I downloaded a node app to test and play around with. I have googled around and found that Express is found to be a little outdated. Can someone help me to fix the implement
Another potential solution to this is to install express 2.5.8 as a dependency.
Add to package.json:
{ "name": "authentication" , "version": "0.0.1" , "private": true , "dependencies": { "express": "2.5.8" , "jade": ">= 0.26.1" } }
and then run
npm install