Questions tagged [nodemon]

nodemon is an automated process that monitors the directory for a given node application. When files change in this directory, nodemon automatically restarts the node application.

nodemon is an automated process that monitors the directory for a given node application. When files change in this directory, nodemon automatically restarts the node application.

Basic usage

nodemon [your node app]
nodemon ./server.js localhost 8080
1355 questions
-1
votes
1 answer

Nodemon will not load my index.js

I have been having some problems trying to get my code to work. Everytime I use nodemon to load it, it attempts to connect and gives me a loading icon in the localhost tab. Live-server works when I load the homepage by itself but the index.js won't…
michael smith
  • 97
  • 1
  • 1
  • 4
-1
votes
1 answer

Using Nodemon or something similar to listen for changes, first build, then start?

Using Nodemon or something similar to listen for changes, first build, then start? Is it possible? "scripts": { "build": "npm run build:dll && webpack --progress", "start": "node app.js", }
benishky
  • 901
  • 1
  • 11
  • 23
-1
votes
1 answer

throw new Error('invalid schema,expected mongodb');

Getting Error: invalid schema, expected mongodb , while starting server using nodeman C:\Users\NDLM\Documents\workspace\angular-drywall>nodemon app.js [nodemon] 1.12.0 [nodemon] to restart at any time, enter `rs` [nodemon] watching: *.* [nodemon]…
-1
votes
1 answer

Setting both proxy and server in Browser-Sync express gulp vagrant nodemon

Having problems with a specific browser-sync configuration. I need to set up browser-sync for both testing and dev environment. Dev is for an express app with templating engine working on vagrant and it reqires a connection via proxy. This set up…
ASem
  • 142
  • 3
  • 16
-1
votes
1 answer

Why can't I see paths that exist in OSX?

I am a windows developer switching over to OSX. I am very confused though. I am learning node.js and the documentation tells me to add a reference to nodemon at the path... /usr/local/bin/nodemon However when I am at the terminal and I type 'ls' I…
Exitos
  • 29,230
  • 38
  • 123
  • 178
-2
votes
0 answers

my nodemon keeps crashing. I would appreciate some assistance

So, I was making a discord bot for my friend. Then nodemon just kept crashing for some reason, I don't understand and would be happy for help. I can't show the code because it shows a bot token. the body has to be 220 characters which is pretty…
Chance
  • 1
-2
votes
1 answer

"nodemon" is not recognized while running it

nodemon : The term 'nodemon' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.** At line:1 char:1 +…
-2
votes
1 answer

nodemon app crashed - waiting for file changes before starting...........mongodb

I have this problem after I connect my file app.js with mongo database. when I use the command npm run watch or nodemon app it works for a second then that happens: and this happened after I wrote this lines of code: I tried to connect with new…
-2
votes
2 answers

npm install -g nodemon err! How do I get through this err

I am studying node js, express. When I try to install 'nodemon', Error messages keep coming out. What kind of error message is this? What can I do to resolve it? What should I study to learn about the route setting of Nodejs? I ask for your…
Sue
  • 1
  • 1
-2
votes
3 answers

When I try to install nodemon i get this error message

npm ERR! code EACCES npm ERR! syscall mkdir npm ERR! path /usr/local/lib/node_modules/nodemon npm ERR! errno -13 npm ERR! Error: EACCES: permission denied, mkdir'/usr/local/lib/node_modules/nodemon' npm ERR! [Error: EACCES: permission denied, mkdir…
Sanil
  • 1
  • 3
-2
votes
1 answer

I cannot install nodemon by using npm command

enter image description here When i tried to install nodemon package using npm i got errors as shown in the picture. I also tried using sudo but nothing changed.
Assim
  • 1
  • 1
-2
votes
1 answer

I got node:events:346

I made a new node project with npm init. When I enter command ➜ nodemon index.js I got Error [nodemon] 2.0.15 [nodemon] to restart at any time, enter `rs` [nodemon] watching path(s): *.* [nodemon] watching extensions: js,mjs,json [nodemon] starting…
Keval Shah
  • 45
  • 1
  • 8
-2
votes
2 answers

Why cannot i download nodemon?

I am trying to download nodemon and am quite unsure why it is not downloading. I have got the following error? npm install -g nodemon npm ERR! code EACCES npm ERR! syscall mkdir npm ERR! path /usr/local/lib/node_modules/nodemon npm ERR! errno…
ryan
  • 69
  • 1
  • 9
-2
votes
1 answer
-2
votes
1 answer

Having issue in installation of nodemom node js

C:\Users\shankar\first-app>npm install nodemom npm ERR! code E404 npm ERR! 404 Not Found: nodemom@latest npm ERR! A complete log of this run can be found in: npm ERR! …
EasyFreeNotes
  • 17
  • 1
  • 7
1 2 3
90
91