UNPKG

20.5 kBMarkdownView Raw
1<p align="center">
2 <img src="https://user-images.githubusercontent.com/13700/35731649-652807e8-080e-11e8-88fd-1b2f6d553b2d.png" alt="Nodemon Logo">
3</p>
4
5# nodemon
6
7nodemon is a tool that helps develop node.js based applications by automatically restarting the node application when file changes in the directory are detected.
8
9nodemon does **not** require *any* additional changes to your code or method of development. nodemon is a replacement wrapper for `node`. To use `nodemon`, replace the word `node` on the command line when executing your script.
10
11[![NPM version](https://badge.fury.io/js/nodemon.svg)](https://npmjs.org/package/nodemon)
12[![Travis Status](https://travis-ci.org/remy/nodemon.svg?branch=master)](https://travis-ci.org/remy/nodemon) [![Backers on Open Collective](https://opencollective.com/nodemon/backers/badge.svg)](#backers) [![Sponsors on Open Collective](https://opencollective.com/nodemon/sponsors/badge.svg)](#sponsors)
13
14# Installation
15
16Either through cloning with git or by using [npm](http://npmjs.org) (the recommended way):
17
18```bash
19npm install -g nodemon # or using yarn: yarn global add nodemon
20```
21
22And nodemon will be installed globally to your system path.
23
24You can also install nodemon as a development dependency:
25
26```bash
27npm install --save-dev nodemon # or using yarn: yarn add nodemon -D
28```
29
30With a local installation, nodemon will not be available in your system path or you can't use it directly from the command line. Instead, the local installation of nodemon can be run by calling it from within an npm script (such as `npm start`) or using `npx nodemon`.
31
32# Usage
33
34nodemon wraps your application, so you can pass all the arguments you would normally pass to your app:
35
36```bash
37nodemon [your node app]
38```
39
40For CLI options, use the `-h` (or `--help`) argument:
41
42```bash
43nodemon -h
44```
45
46Using nodemon is simple, if my application accepted a host and port as the arguments, I would start it as so:
47
48```bash
49nodemon ./server.js localhost 8080
50```
51
52Any output from this script is prefixed with `[nodemon]`, otherwise all output from your application, errors included, will be echoed out as expected.
53
54You can also pass the `inspect` flag to node through the command line as you would normally:
55
56```bash
57nodemon --inspect ./server.js 80
58```
59
60If you have a `package.json` file for your app, you can omit the main script entirely and nodemon will read the `package.json` for the `main` property and use that value as the app ([ref](https://github.com/remy/nodemon/issues/14)).
61
62nodemon will also search for the `scripts.start` property in `package.json` (as of nodemon 1.1.x).
63
64Also check out the [FAQ](https://github.com/remy/nodemon/blob/master/faq.md) or [issues](https://github.com/remy/nodemon/issues) for nodemon.
65
66## Automatic re-running
67
68nodemon was originally written to restart hanging processes such as web servers, but now supports apps that cleanly exit. If your script exits cleanly, nodemon will continue to monitor the directory (or directories) and restart the script if there are any changes.
69
70## Manual restarting
71
72Whilst nodemon is running, if you need to manually restart your application, instead of stopping and restart nodemon, you can type `rs` with a carriage return, and nodemon will restart your process.
73
74## Config files
75
76nodemon supports local and global configuration files. These are usually named `nodemon.json` and can be located in the current working directory or in your home directory. An alternative local configuration file can be specified with the `--config <file>` option.
77
78The specificity is as follows, so that a command line argument will always override the config file settings:
79
80- command line arguments
81- local config
82- global config
83
84A config file can take any of the command line arguments as JSON key values, for example:
85
86```json
87{
88 "verbose": true,
89 "ignore": ["*.test.js", "fixtures/*"],
90 "execMap": {
91 "rb": "ruby",
92 "pde": "processing --sketch={{pwd}} --run"
93 }
94}
95```
96
97The above `nodemon.json` file might be my global config so that I have support for ruby files and processing files, and I can run `nodemon demo.pde` and nodemon will automatically know how to run the script even though out of the box support for processing scripts.
98
99A further example of options can be seen in [sample-nodemon.md](https://github.com/remy/nodemon/blob/master/doc/sample-nodemon.md)
100
101### package.json
102
103If you want to keep all your package configurations in one place, nodemon supports using `package.json` for configuration.
104Specify the config in the same format as you would for a config file but under `nodemonConfig` in the `package.json` file, for example, take the following `package.json`:
105
106```json
107{
108 "name": "nodemon",
109 "homepage": "http://nodemon.io",
110 "...": "... other standard package.json values",
111 "nodemonConfig": {
112 "ignore": ["test/*", "docs/*"],
113 "delay": 2500
114 }
115}
116```
117
118Note that if you specify a `--config` file or provide a local `nodemon.json` any `package.json` config is ignored.
119
120*This section needs better documentation, but for now you can also see `nodemon --help config` ([also here](https://github.com/remy/nodemon/blob/master/doc/cli/config.txt))*.
121
122## Using nodemon as a module
123
124Please see [doc/requireable.md](doc/requireable.md)
125
126## Using nodemon as child process
127
128Please see [doc/events.md](doc/events.md#Using_nodemon_as_child_process)
129
130## Running non-node scripts
131
132nodemon can also be used to execute and monitor other programs. nodemon will read the file extension of the script being run and monitor that extension instead of `.js` if there's no `nodemon.json`:
133
134```bash
135nodemon --exec "python -v" ./app.py
136```
137
138Now nodemon will run `app.py` with python in verbose mode (note that if you're not passing args to the exec program, you don't need the quotes), and look for new or modified files with the `.py` extension.
139
140### Default executables
141
142Using the `nodemon.json` config file, you can define your own default executables using the `execMap` property. This is particularly useful if you're working with a language that isn't supported by default by nodemon.
143
144To add support for nodemon to know about the `.pl` extension (for Perl), the `nodemon.json` file would add:
145
146```json
147{
148 "execMap": {
149 "pl": "perl"
150 }
151}
152```
153
154Now running the following, nodemon will know to use `perl` as the executable:
155
156```bash
157nodemon script.pl
158```
159
160It's generally recommended to use the global `nodemon.json` to add your own `execMap` options. However, if there's a common default that's missing, this can be merged in to the project so that nodemon supports it by default, by changing [default.js](https://github.com/remy/nodemon/blob/master/lib/config/defaults.js) and sending a pull request.
161
162## Monitoring multiple directories
163
164By default nodemon monitors the current working directory. If you want to take control of that option, use the `--watch` option to add specific paths:
165
166```bash
167nodemon --watch app --watch libs app/server.js
168```
169
170Now nodemon will only restart if there are changes in the `./app` or `./libs` directory. By default nodemon will traverse sub-directories, so there's no need in explicitly including sub-directories.
171
172Don't use unix globbing to pass multiple directories, e.g `--watch ./lib/*`, it won't work. You need a `--watch` flag per directory watched.
173
174## Specifying extension watch list
175
176By default, nodemon looks for files with the `.js`, `.mjs`, `.coffee`, `.litcoffee`, and `.json` extensions. If you use the `--exec` option and monitor `app.py` nodemon will monitor files with the extension of `.py`. However, you can specify your own list with the `-e` (or `--ext`) switch like so:
177
178```bash
179nodemon -e js,pug
180```
181
182Now nodemon will restart on any changes to files in the directory (or subdirectories) with the extensions `.js`, `.pug`.
183
184## Ignoring files
185
186By default, nodemon will only restart when a `.js` JavaScript file changes. In some cases you will want to ignore some specific files, directories or file patterns, to prevent nodemon from prematurely restarting your application.
187
188This can be done via the command line:
189
190```bash
191nodemon --ignore lib/ --ignore tests/
192```
193
194Or specific files can be ignored:
195
196```bash
197nodemon --ignore lib/app.js
198```
199
200Patterns can also be ignored (but be sure to quote the arguments):
201
202```bash
203nodemon --ignore 'lib/*.js'
204```
205
206Note that by default, nodemon will ignore the `.git`, `node_modules`, `bower_components`, `.nyc_output`, `coverage` and `.sass-cache` directories and *add* your ignored patterns to the list. If you want to indeed watch a directory like `node_modules`, you need to [override the underlying default ignore rules](https://github.com/remy/nodemon/blob/master/faq.md#overriding-the-underlying-default-ignore-rules).
207
208## Application isn't restarting
209
210In some networked environments (such as a container running nodemon reading across a mounted drive), you will need to use the `legacyWatch: true` which enables Chokidar's polling.
211
212Via the CLI, use either `--legacy-watch` or `-L` for short:
213
214```bash
215nodemon -L
216```
217
218Though this should be a last resort as it will poll every file it can find.
219
220## Delaying restarting
221
222In some situations, you may want to wait until a number of files have changed. The timeout before checking for new file changes is 1 second. If you're uploading a number of files and it's taking some number of seconds, this could cause your app to restart multiple times unnecessarily.
223
224To add an extra throttle, or delay restarting, use the `--delay` command:
225
226```bash
227nodemon --delay 10 server.js
228```
229
230For more precision, milliseconds can be specified. Either as a float:
231
232```bash
233nodemon --delay 2.5 server.js
234```
235
236Or using the time specifier (ms):
237
238```bash
239nodemon --delay 2500ms server.js
240```
241
242The delay figure is number of seconds (or milliseconds, if specified) to delay before restarting. So nodemon will only restart your app the given number of seconds after the *last* file change.
243
244If you are setting this value in `nodemon.json`, the value will always be interpreted in milliseconds. E.g., the following are equivalent:
245
246```bash
247nodemon --delay 2.5
248
249{
250 "delay": 2500
251}
252```
253
254## Gracefully reloading down your script
255
256It is possible to have nodemon send any signal that you specify to your application.
257
258```bash
259nodemon --signal SIGHUP server.js
260```
261
262Your application can handle the signal as follows.
263
264```js
265process.once("SIGHUP", function () {
266 reloadSomeConfiguration();
267})
268```
269
270Please note that nodemon will send this signal to every process in the process tree.
271
272If you are using `cluster`, then each workers (as well as the master) will receive the signal. If you wish to terminate all workers on receiving a `SIGHUP`, a common pattern is to catch the `SIGHUP` in the master, and forward `SIGTERM` to all workers, while ensuring that all workers ignore `SIGHUP`.
273
274```js
275if (cluster.isMaster) {
276 process.on("SIGHUP", function () {
277 for (const worker of Object.values(cluster.workers)) {
278 worker.process.kill("SIGTERM");
279 }
280 });
281} else {
282 process.on("SIGHUP", function() {})
283}
284```
285
286## Controlling shutdown of your script
287
288nodemon sends a kill signal to your application when it sees a file update. If you need to clean up on shutdown inside your script you can capture the kill signal and handle it yourself.
289
290The following example will listen once for the `SIGUSR2` signal (used by nodemon to restart), run the clean up process and then kill itself for nodemon to continue control:
291
292```js
293process.once('SIGUSR2', function () {
294 gracefulShutdown(function () {
295 process.kill(process.pid, 'SIGUSR2');
296 });
297});
298```
299
300Note that the `process.kill` is *only* called once your shutdown jobs are complete. Hat tip to [Benjie Gillam](http://www.benjiegillam.com/2011/08/node-js-clean-restart-and-faster-development-with-nodemon/) for writing this technique up.
301
302## Triggering events when nodemon state changes
303
304If you want growl like notifications when nodemon restarts or to trigger an action when an event happens, then you can either `require` nodemon or add event actions to your `nodemon.json` file.
305
306For example, to trigger a notification on a Mac when nodemon restarts, `nodemon.json` looks like this:
307
308```json
309{
310 "events": {
311 "restart": "osascript -e 'display notification \"app restarted\" with title \"nodemon\"'"
312 }
313}
314```
315
316A full list of available events is listed on the [event states wiki](https://github.com/remy/nodemon/wiki/Events#states). Note that you can bind to both states and messages.
317
318## Pipe output to somewhere else
319
320```js
321nodemon({
322 script: ...,
323 stdout: false // important: this tells nodemon not to output to console
324}).on('readable', function() { // the `readable` event indicates that data is ready to pick up
325 this.stdout.pipe(fs.createWriteStream('output.txt'));
326 this.stderr.pipe(fs.createWriteStream('err.txt'));
327});
328```
329
330## Using nodemon in your gulp workflow
331
332Check out the [gulp-nodemon](https://github.com/JacksonGariety/gulp-nodemon) plugin to integrate nodemon with the rest of your project's gulp workflow.
333
334## Using nodemon in your Grunt workflow
335
336Check out the [grunt-nodemon](https://github.com/ChrisWren/grunt-nodemon) plugin to integrate nodemon with the rest of your project's grunt workflow.
337
338## Pronunciation
339
340> nodemon, is it pronounced: node-mon, no-demon or node-e-mon (like pokémon)?
341
342Well...I've been asked this many times before. I like that I've been asked this before. There's been bets as to which one it actually is.
343
344The answer is simple, but possibly frustrating. I'm not saying (how I pronounce it). It's up to you to call it as you like. All answers are correct :)
345
346## Design principles
347
348- Fewer flags is better
349- Works across all platforms
350- Fewer features
351- Let individuals build on top of nodemon
352- Offer all CLI functionality as an API
353- Contributions must have and pass tests
354
355Nodemon is not perfect, and CLI arguments has sprawled beyond where I'm completely happy, but perhaps it can be reduced a little one day.
356
357## FAQ
358
359See the [FAQ](https://github.com/remy/nodemon/blob/master/faq.md) and please add your own questions if you think they would help others.
360
361## Backers
362
363Thank you to all [our backers](https://opencollective.com/nodemon#backer)! 🙏
364
365[![nodemon backers](https://opencollective.com/nodemon/backers.svg?width=890)](https://opencollective.com/nodemon#backers)
366
367## Sponsors
368
369Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Sponsor this project today ❤️](https://opencollective.com/nodemon#sponsor)
370
371<!-- generated with https://jqterm.com/8d123effeb793313c2a0ad559adbc6a4?query=def%20getImage%3A%0A%09.%20as%20%24_%20%7C%0A%09%7B%20%0A%20%20%20%20%20%20%22206432%22%3A%20%22https%3A%2F%2Fuser-images.githubusercontent.com%2F13700%2F127474039-8ba5ac8c-2095-4984-9309-54ff15e95340.png%22%2C%0A%09%20%20%22215800%22%3A%20%22https%3A%2F%2Fimages.opencollective.com%2Faussielowdepositcasino%2Fd85338f%2Flogo%2F256.png%22%20%0A%20%20%20%20%7D%20%7C%20%28.%5B%22%5C%28%24_.MemberId%29%22%5D%20%2F%2F%20%24_.image%29%0A%3B%0A%0Adef%20tohtml%3A%0A%09%22%3Ca%20href%3D%27%5C%28.website%29%27%3E%3Cimg%20src%3D%27%5C%28.%20%7C%20getImage%29%27%20style%3D%27object-fit%3A%20contain%3B%20float%3A%20left%3B%20margin%3A12px%27%20height%3D%27120%27%20width%3D%27120%27%3E%3C%2Fa%3E%22%0A%3B%0A%0Asort_by%28.createdAt%29%20%7C%20map%28select%28.isActive%20%3D%3D%20true%20and%20.image%29%20%7C%20tohtml%29%20%7C%20join%28%22%22%29&raw=true -->
372<div style="overflow: hidden; margin-bottom: 80px;">
373<a href='https://www.topratedcasinosites.co.uk/'><img src='https://opencollective-production.s3.us-west-1.amazonaws.com/2c1d1cb0-623b-11eb-a737-2bef0291120b.png' style='object-fit: contain; float: left; margin:12px' height='120' width='120'></a><a href='https://najlepsibukmacherzy.pl/ranking-legalnych-bukmacherow/'><img src='https://opencollective-production.s3.us-west-1.amazonaws.com/52acecf0-608a-11eb-b17f-5bca7c67fe7b.png' style='object-fit: contain; float: left; margin:12px' height='120' width='120'></a><a href='https://topaussiecasinos.com/'><img src='https://opencollective-production.s3.us-west-1.amazonaws.com/89ea5890-6d1c-11ea-9dd9-330b3b2faf8b.png' style='object-fit: contain; float: left; margin:12px' height='120' width='120'></a><a href='https://netticasinohex.com/'><img src='https://opencollective-production.s3.us-west-1.amazonaws.com/b802aa50-7b1a-11ea-bcaf-0dc68ad9bc17.png' style='object-fit: contain; float: left; margin:12px' height='120' width='120'></a><a href='https://kasynohex.com/'><img src='https://opencollective-production.s3.us-west-1.amazonaws.com/2bb0d6e0-99c8-11ea-9349-199aa0d5d24a.png' style='object-fit: contain; float: left; margin:12px' height='120' width='120'></a><a href='https://hollandsegokken.nl/'><img src='https://opencollective-production.s3.us-west-1.amazonaws.com/3af13c90-8b43-11eb-9237-593e900cd7df.png' style='object-fit: contain; float: left; margin:12px' height='120' width='120'></a><a href='https://www.casinoonlineaams.com'><img src='https://opencollective-production.s3.us-west-1.amazonaws.com/a0694620-b88f-11eb-b3a4-b97529e4b911.png' style='object-fit: contain; float: left; margin:12px' height='120' width='120'></a><a href='https://slotokingua.com'><img src='https://opencollective-production.s3.us-west-1.amazonaws.com/3c173eb0-96b7-11eb-84a7-571f6970ac83.jpg' style='object-fit: contain; float: left; margin:12px' height='120' width='120'></a><a href='https://gamblizardcanada.com/free-spins/'><img src='https://logo.clearbit.com/gamblizardcanada.com' style='object-fit: contain; float: left; margin:12px' height='120' width='120'></a><a href='https://anbefaltcasino.com/'><img src='https://opencollective-production.s3.us-west-1.amazonaws.com/9d50eb20-eb92-11ea-bffe-c532c6ce425f.jpg' style='object-fit: contain; float: left; margin:12px' height='120' width='120'></a><a href='https://www.bitcoinbuster.com/'><img src='https://logo.clearbit.com/bitcoinbuster.com' style='object-fit: contain; float: left; margin:12px' height='120' width='120'></a><a href='https://casinosters.com/minimum-deposit-casinos/'><img src='https://user-images.githubusercontent.com/13700/127474039-8ba5ac8c-2095-4984-9309-54ff15e95340.png' style='object-fit: contain; float: left; margin:12px' height='120' width='120'></a><a href='https://www.casinotopp.net/sv/'><img src='https://logo.clearbit.com/casinotopp.net' style='object-fit: contain; float: left; margin:12px' height='120' width='120'></a><a href='https://www.casinoutanlicens.io/'><img src='https://opencollective-production.s3.us-west-1.amazonaws.com/52f13c30-0d78-11eb-88e4-510439e2a88d.png' style='object-fit: contain; float: left; margin:12px' height='120' width='120'></a><a href='https://casinowhizz.com'><img src='https://opencollective-production.s3.us-west-1.amazonaws.com/23256a80-f5c1-11eb-99f7-fbf8e4d6c6be.jpg' style='object-fit: contain; float: left; margin:12px' height='120' width='120'></a><a href='https://aussielowdepositcasino.com/'><img src='https://images.opencollective.com/aussielowdepositcasino/d85338f/logo/256.png' style='object-fit: contain; float: left; margin:12px' height='120' width='120'></a><a href='https://www.casinot.net'><img src='https://opencollective-production.s3.us-west-1.amazonaws.com/73b4fc10-7591-11ea-a1d4-01a20d893b4f.png' style='object-fit: contain; float: left; margin:12px' height='120' width='120'></a><a href='https://www.parhaatkasinot.com'><img src='https://opencollective-production.s3.us-west-1.amazonaws.com/4dfc1820-b6ee-11ea-9fa9-e39f53823609.png' style='object-fit: contain; float: left; margin:12px' height='120' width='120'></a><a href='https://www.cryptosnacks.org/bitcoin-casino/'><img src='https://opencollective-production.s3.us-west-1.amazonaws.com/db217a90-122f-11ec-81e8-594bc2daa9dc.png' style='object-fit: contain; float: left; margin:12px' height='120' width='120'></a><a href='https://www.kasinot.fi'><img src='https://logo.clearbit.com/www.kasinot.fi' style='object-fit: contain; float: left; margin:12px' height='120' width='120'></a><a href='https://betomania.pl/ranking-bukmacherow/'><img src='https://logo.clearbit.com/betomania.pl' style='object-fit: contain; float: left; margin:12px' height='120' width='120'></a><a href='https://www.targetedwebtraffic.com'><img src='https://logo.clearbit.com/targetedwebtraffic.com' style='object-fit: contain; float: left; margin:12px' height='120' width='120'></a>
374
375</div>
376
377# License
378
379MIT [http://rem.mit-license.org](http://rem.mit-license.org)