What is nodemon and how it can we used?



What is nodemon and how it can we used?..

Answer / Anil Kumar Rawat

Nodemon is a utility that automatically restarts your Node.js application whenever any changes are made to the code. You can use it by installing it globally with `npm install -g nodemon`, and then replacing the start command in your package.json file with `"scripts": {"start": "nodemon index.js"}`. When you run `npm start`, nodemon will start your application and watch for changes.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Node.js Interview Questions

What is spawn in node js?

1 Answers  


In which language node js is written?

1 Answers  


What is middleware in node.js?

1 Answers  


What Is Local Installation Of Dependencies?

1 Answers  


Is there any system configration needed to install node js?

1 Answers  


How does promise and queue work?

1 Answers  


Are you sure node.js execute system command synchronously?

1 Answers  


What Is Package.json?

1 Answers  


How node.js works?

1 Answers  


What are the local installations of dependencies?

1 Answers  


What is control flow function?

1 Answers  


What is libuv?

1 Answers  


Categories