When I tried to run my node server by this command:
node server.js
I got this error:
internal/modules/cjs/loader.js:905
throw err;
^
Error: Cannot find module 'fcc-express-bground'
Any solutions?
CodePudding user response:
You need to install the package.
npm i fcc-express-bground
CodePudding user response:
Install the dependency by running: npm i fcc-express-background
.