-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nodemon not working #106
Comments
Update the package and run "npm run start" in server
Run:- npm install nodemon when I using the "npm install nodemon" the problem is solved. Other wise you can run "npm install -g nodemon". |
run |
If you want to start with nodemon please install it "npm installl nodemon" then do "npm start", otherwise you can also directly start server by doing "node index.js". |
use "npm install nodemon" command in terminal |
"dependencies": { |
On server folder, the "start" script is:
but you don't have nodemon on your dependencies
Install nodemon as dev dependency with -D flag and change scripts to this:
"scripts": { "start": "node index.js", "dev": "nodemon index.js" },
The text was updated successfully, but these errors were encountered: