Question
Deprecated version of express doesn't upgrade
The version of express in the MEAN stack remains 2.5.8 which is supposed to be deprecated. How do I get it to release 3.x.x or higher ?
I have tried
npm install -g express@3.x.x
and the feedback is that it is installing 3.18.4
/usr/local/bin/express -> /usr/local/lib/node_modules/express/bin/express
express@3.18.4 /usr/local/lib/node_modules/express
but then after successful install still version 2.5.8 is shown
root@olivettatest:~/projects/getting-MEAN# express --version
2.5.8
Anybody any Idea ?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×