Say goodbye to the cumbersomeness of repeated restarts in Node.js development! This article introduces two methods to help you improve development efficiency.
Core points
- Efficient development with nodemon: We will introduce nodemon, a third-party Node.js module, which can effectively solve the problem of manually stopping and restarting the Node.js application after each code modification.
- nodemon configuration options: We will cover various configuration options for nodemon, such as setting a specific path to monitor, ignoring a specific path, monitoring a specific file extension, adjusting restart delay, and setting environment variables.
- Node.js --watch mode (for simple applications): For simple applications, if you are using Node.js 18.11 or later, you can use the experimental
--watch
option of Node.js . This built-in feature restarts the application whenever any imported file changes, providing a more direct alternative than nodemon without the need for additional third-party modules. However, it lacks the advanced control options available in nodemon.
If you have PHP development experience, you know you can always update the code and refresh the browser to test the changes. A web server like Apache or NGINX will receive your request for a PHP file and pass the contents to the PHP interpreter to execute the code. The server returns the generated output (usually HTML or JSON) to the calling browser. In other words, the code runs dynamically every time it is requested.
Node.js takes a different approach to web applications: Your JavaScript application is a web server. Running node index.js
will initialize the application, load all modules and start a server that can respond to incoming requests. Changing the file does not affect the output of the application because it is already running in memory. To test for an update, you must close it with Ctrl | Cmd CCnode index.js
> and run
Node.js stop and restart processes can become very frustrating during debugging or during those rare focused hours, especially when making a lot of changes. Fortunately, there are two solutions:
- nodemon
-
--watch
Node.js Mode
nodemon
nodemon is a third-party Node.js module developed by JavaScript expert Remy Sharp. (He said you can pronounce it at will!)
You can install nodemon as a global module:
npm install -g nodemon
Then replace node with nodemon in the development startup command. For example, consider the following command:
node --inspect index.js arg1 arg2
The above command will now look like this:
nodemon --inspect index.js arg1 arg2
Your application will start as usual, but it will automatically restart when you edit and save the source file. No need to press Ctrl | Cmd Crs
and run again, although you can type and press Enter
Note: nodemon is a server-side solution that does not refresh any browser tabs you point to the application. You can use tools like Browsersync or esbuild to achieve real-time reloading.
To get nodemon help, enter:
npm install -g nodemon
nodemon configuration
nodemon has its own set of command line parameters that take precedence over configurations elsewhere. You can also define configurations at:
- Part of
package.json
in the"nodemonConfig"
file of the project - Local
nodemon.json
Configuration file in the project directory, and/or - Global
nodemon --config <file>
configuration file used when runningnodemon.json
from the command line
The following parameters/settings are commonly used.
watch
nodemon monitors JavaScript files in the current working directory, but you can explicitly set a specific path using wildcards on the command line:
node --inspect index.js arg1 arg2
Or you can do this in the nodemon.json
configuration file:
nodemon --inspect index.js arg1 arg2
ignore
Similarly, you can choose to ignore the path:
nodemon --help
Or you can do this in the nodemon.json
configuration file:
nodemon --watch lib1 config/*.json ./index.js
ext
You can monitor specific files by their file extensions. For example, you can monitor js, cjs, mjs, json and njk template files like this:
{ "watch": [ "lib1", "config/*.json" ] }
Or you can do this in the nodemon.json
configuration file:
nodemon --ignore lib2 config/build.json ./index.js
legacyWatch
In some environments, such as Docker containers that read files from mounted drives, file monitoring may fail. Switch to legacy monitoring mode Use polling to check if the file has been changed. From the command line:
{ "ignore": [ "lib2", "config/build.json" ] }
or in the nodemon.json
configuration file:
nodemon --ext "js,cjs,mjs,json,njk" ./index.js
delay
nodemon waits for a second before triggering a restart. This is useful when you usually save many files at once. You can change the delay from the command line - for example, to five seconds:
{ "ext": "js,cjs,mjs,json,njk" }
Or in the nodemon.json
configuration file (note that this configuration uses milliseconds instead of seconds):
nodemon --legacy-watch ./index.js
verbose
Show detailed output log:
{ "legacyWatch": true }
or in the nodemon.json
configuration file:
nodemon --delay 5 ./index.js
env
Configuration file for setting a specific environment variable: nodemon.json
{ "delay": 5000 }Other executables
Finally, you can use nodemon to launch applications written in other languages. For example, to start a perl script that automatically restarts:
nodemon --verbose ./index.jsYou can also define a list of executables using its extension in the
configuration file: nodemon.json
{ "verbose": true }Advanced nodemon
If you need it, nodemon offers more advanced features:
- Send a signal so that you can handle shutdown gracefully
- Free event when nodemon's state changes
- Transfer the output pipeline to other processes
- Load nodemon as module into your project
- Generate nodemon as child process, and
- Use nodemon in Gulp and Grunt workflows.
Node.js --watch mode
If you have complex application startup requirements, nodemon is still the preferred tool. However, if you are using Node.js 18.11 (released late 2022) or later, it provides an experimental --watch
option to restart your application without installing nodemon or any other third-party modules . For example, for the start command:
npm install -g nodemon
This will become:
node --inspect index.js arg1 arg2
Node.js will restart when any imported file changes. There are no other control options, so if it doesn't fit your project, consider using nodemon instead.
Summary
As your experience grows, you will find it increasingly useful to automatically restart Node.js applications. Please consider this as part of the development workflow in all projects.
The above is the detailed content of Using Nodemon and Watch in Node.js for Live Restarts. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

There are three common ways to initiate HTTP requests in Node.js: use built-in modules, axios, and node-fetch. 1. Use the built-in http/https module without dependencies, which is suitable for basic scenarios, but requires manual processing of data stitching and error monitoring, such as using https.get() to obtain data or send POST requests through .write(); 2.axios is a third-party library based on Promise. It has concise syntax and powerful functions, supports async/await, automatic JSON conversion, interceptor, etc. It is recommended to simplify asynchronous request operations; 3.node-fetch provides a style similar to browser fetch, based on Promise and simple syntax

JavaScript data types are divided into primitive types and reference types. Primitive types include string, number, boolean, null, undefined, and symbol. The values are immutable and copies are copied when assigning values, so they do not affect each other; reference types such as objects, arrays and functions store memory addresses, and variables pointing to the same object will affect each other. Typeof and instanceof can be used to determine types, but pay attention to the historical issues of typeofnull. Understanding these two types of differences can help write more stable and reliable code.

Hello, JavaScript developers! Welcome to this week's JavaScript news! This week we will focus on: Oracle's trademark dispute with Deno, new JavaScript time objects are supported by browsers, Google Chrome updates, and some powerful developer tools. Let's get started! Oracle's trademark dispute with Deno Oracle's attempt to register a "JavaScript" trademark has caused controversy. Ryan Dahl, the creator of Node.js and Deno, has filed a petition to cancel the trademark, and he believes that JavaScript is an open standard and should not be used by Oracle

CacheAPI is a tool provided by the browser to cache network requests, which is often used in conjunction with ServiceWorker to improve website performance and offline experience. 1. It allows developers to manually store resources such as scripts, style sheets, pictures, etc.; 2. It can match cache responses according to requests; 3. It supports deleting specific caches or clearing the entire cache; 4. It can implement cache priority or network priority strategies through ServiceWorker listening to fetch events; 5. It is often used for offline support, speed up repeated access speed, preloading key resources and background update content; 6. When using it, you need to pay attention to cache version control, storage restrictions and the difference from HTTP caching mechanism.

Promise is the core mechanism for handling asynchronous operations in JavaScript. Understanding chain calls, error handling and combiners is the key to mastering their applications. 1. The chain call returns a new Promise through .then() to realize asynchronous process concatenation. Each .then() receives the previous result and can return a value or a Promise; 2. Error handling should use .catch() to catch exceptions to avoid silent failures, and can return the default value in catch to continue the process; 3. Combinators such as Promise.all() (successfully successful only after all success), Promise.race() (the first completion is returned) and Promise.allSettled() (waiting for all completions)

JavaScript array built-in methods such as .map(), .filter() and .reduce() can simplify data processing; 1) .map() is used to convert elements one to one to generate new arrays; 2) .filter() is used to filter elements by condition; 3) .reduce() is used to aggregate data as a single value; misuse should be avoided when used, resulting in side effects or performance problems.

JavaScript's event loop manages asynchronous operations by coordinating call stacks, WebAPIs, and task queues. 1. The call stack executes synchronous code, and when encountering asynchronous tasks, it is handed over to WebAPI for processing; 2. After the WebAPI completes the task in the background, it puts the callback into the corresponding queue (macro task or micro task); 3. The event loop checks whether the call stack is empty. If it is empty, the callback is taken out from the queue and pushed into the call stack for execution; 4. Micro tasks (such as Promise.then) take precedence over macro tasks (such as setTimeout); 5. Understanding the event loop helps to avoid blocking the main thread and optimize the code execution order.

Event bubbles propagate from the target element outward to the ancestor node, while event capture propagates from the outer layer inward to the target element. 1. Event bubbles: After clicking the child element, the event triggers the listener of the parent element upwards in turn. For example, after clicking the button, it outputs Childclicked first, and then Parentclicked. 2. Event capture: Set the third parameter to true, so that the listener is executed in the capture stage, such as triggering the capture listener of the parent element before clicking the button. 3. Practical uses include unified management of child element events, interception preprocessing and performance optimization. 4. The DOM event stream is divided into three stages: capture, target and bubble, and the default listener is executed in the bubble stage.
