The package.json file indicates that the required express version is 4.4.1. However, express in versions <3.11 || >=4 <4.5 are deemed insecure as per the Node Security Project.
Best would be to require ^4.12.4 (or whatever the current stable version is) after some testing.
The
package.json
file indicates that the requiredexpress
version is4.4.1
. However,express
in versions<3.11 || >=4 <4.5
are deemed insecure as per the Node Security Project.Best would be to require
^4.12.4
(or whatever the current stable version is) after some testing.