I'm using express-ws@2.0.0 with express@5.0.0-alpha.2 successfully. Can we update package.json to get rid of npm warning:
npm WARN express-ws@2.0.0 requires a peer of express@^4.0.0 but none was installed.
the only required change:
"express": "^4.0.0"
to
"express": "^4.0.0 || ^5.0.0-alpha.2"
I'm using express-ws@2.0.0 with express@5.0.0-alpha.2 successfully. Can we update package.json to get rid of npm warning:
npm WARN express-ws@2.0.0 requires a peer of express@^4.0.0 but none was installed.
the only required change:"express": "^4.0.0"
to"express": "^4.0.0 || ^5.0.0-alpha.2"