How to find the ExpressJS version?

3

How do I find out the installed version of ExpressJs?

    
asked by anonymous 16.11.2015 / 23:04

1 answer

4

Use the npm list

To get the version of express npm list express

To see the version of the installed packages, use the npm list or npm list -g project to see all packages installed.

    
17.11.2015 / 00:13