Rakib Rahman
Rakib Rahman

Reputation: 1

Cannot find module 'express' in node

Cannot find module 'express' in server side. error

Upvotes: 0

Views: 2991

Answers (2)

jeremy-denis
jeremy-denis

Reputation: 6878

the express package is not found in local node_modules packages

try add it with

npm i express

Upvotes: 0

Sanmitra Nagaraj
Sanmitra Nagaraj

Reputation: 479

Always note to use npm i when ever you clone into the server to install missing packages.

Upvotes: 1

Related Questions