When I run the code
$ npm start
this shows up,
> assignment3@1.0.0 start
> nodemon server.js
[nodemon] 2.0.12
[nodemon] to restart at any time, enter `rs`
[nodemon] watching path(s): *.*
[nodemon] watching extensions: js,mjs,json
[nodemon] starting `node server.js app.js`
node:internal/modules/cjs/loader:936
throw err;
^
Error: Cannot find module './response'
Require stack:
- /Users/hoshidan/nodejsproject/assignment3/node_modules/express/lib/express.js
- /Users/hoshidan/nodejsproject/assignment3/node_modules/express/index.js
- /Users/hoshidan/nodejsproject/assignment3/app.js
at Function.Module._resolveFilename (node:internal/modules/cjs/loader:933:15)
at Function.Module._load (node:internal/modules/cjs/loader:778:27)
at Module.require (node:internal/modules/cjs/loader:1005:19)
at require (node:internal/modules/cjs/helpers:94:18)
at Object.<anonymous> (/Users/hoshidan/nodejsproject/assignment3/node_modules/express/lib/express.js:22:11)
at Module._compile (node:internal/modules/cjs/loader:1101:14)
at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10)
at Module.load (node:internal/modules/cjs/loader:981:32)
at Function.Module._load (node:internal/modules/cjs/loader:822:12)
at Module.require (node:internal/modules/cjs/loader:1005:19) {
code: 'MODULE_NOT_FOUND',
requireStack: [
'/Users/hoshidan/nodejsproject/assignment3/node_modules/express/lib/express.js',
'/Users/hoshidan/nodejsproject/assignment3/node_modules/express/index.js',
'/Users/hoshidan/nodejsproject/assignment3/app.js'
]
}
[nodemon] app crashed - waiting for file changes before starting...
I Tried to search in node_modules/express/lib/express.js i saw that there's no file for
./response response.js
and don't know where to begin the fix, should i just re-install the node_modules or maybe you have some insights to fix this kind of error, hope you help me guys
Thanks!
Additional Codes of information please see my GITHUB
CodePudding user response:
You should try reinstalling express:
rm -rf node_modules && npm i
This is so because it seems Express does have the response file over here: https://github.com/expressjs/express/blob/master/lib/response.js.
P.S.: Making a post since I can't comment.
CodePudding user response:
The Majority of the solution is correct. It resolved the problem. Thanks!
I try use this command
npm uninstall express
followed by
npm install express
gives me what i need, Thank again
This issue is closed..