Here is my complete error:
Error: Cannot find module \'ejs\' at Function._resolveFilename (module.js:317:11) at Function._load (module.js:262:25)
I think ejs template engine is not properly installed on your machine. You just install the template engine using npm
npm install ejs --save
then include the following code in app.js
app.set('view engine', 'ejs')