Reputation: 1
Cannot find module 'express' in server side.
Upvotes: 0
Views: 2991
Reputation: 6878
the express package is not found in local node_modules packages
try add it with
npm i express
Upvotes: 0
Reputation: 479
Always note to use npm i
when ever you clone into the server to install missing packages.
Upvotes: 1