Nodemon Logo

nodemon

nodemon is a tool that helps develop Node.js based applications by automatically restarting the node application when file changes in the directory are detected.

nodemon 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.

NPM version Backers on Open Collective Sponsors on Open Collective

Installation

Either through cloning with git or by using npm (the recommended way):

npm install -g nodemon # or using yarn: yarn global add nodemon

And nodemon will be installed globally to your system path.

You can also install nodemon as a development dependency:

npm install --save-dev nodemon # or using yarn: yarn add nodemon -D

With 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.

Usage

nodemon wraps your application, so you can pass all the arguments you would normally pass to your app:

nodemon [your node app]

For CLI options, use the -h (or --help) argument:

nodemon -h

Using nodemon is simple, if my application accepted a host and port as the arguments, I would start it as so:

nodemon ./server.js localhost 8080

Any output from this script is prefixed with [nodemon], otherwise all output from your application, errors included, will be echoed out as expected.

You can also pass the inspect flag to node through the command line as you would normally:

nodemon --inspect ./server.js 80

If 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).

nodemon will also search for the scripts.start property in package.json (as of nodemon 1.1.x).

Also check out the FAQ or issues for nodemon.

Automatic re-running

nodemon 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.

Manual restarting

Whilst 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.

Config files

nodemon 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.

The specificity is as follows, so that a command line argument will always override the config file settings:

  • command line arguments
  • local config
  • global config

A config file can take any of the command line arguments as JSON key values, for example:

{
  "verbose": true,
  "ignore": ["*.test.js", "**/fixtures/**"],
  "execMap": {
    "rb": "ruby",
    "pde": "processing --sketch={{pwd}} --run"
  }
}

The 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.

A further example of options can be seen in sample-nodemon.md

package.json

If you want to keep all your package configurations in one place, nodemon supports using package.json for configuration. Specify 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:

{
  "name": "nodemon",
  "homepage": "http://nodemon.io",
  "...": "... other standard package.json values",
  "nodemonConfig": {
    "ignore": ["**/test/**", "**/docs/**"],
    "delay": 2500
  }
}

Note that if you specify a --config file or provide a local nodemon.json any package.json config is ignored.

This section needs better documentation, but for now you can also see nodemon --help config (also here).

Using nodemon as a module

Please see doc/requireable.md

Using nodemon as child process

Please see doc/events.md

Running non-node scripts

nodemon 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:

nodemon --exec "python -v" ./app.py

Now 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.

Default executables

Using 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.

To add support for nodemon to know about the .pl extension (for Perl), the nodemon.json file would add:

{
  "execMap": {
    "pl": "perl"
  }
}

Now running the following, nodemon will know to use perl as the executable:

nodemon script.pl

It'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 and sending a pull request.

Monitoring multiple directories

By default nodemon monitors the current working directory. If you want to take control of that option, use the --watch option to add specific paths:

nodemon --watch app --watch libs app/server.js

Now 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.

Nodemon also supports unix globbing, e.g --watch './lib/*'. The globbing pattern must be quoted. For advanced globbing, see picomatch documentation, the library that nodemon uses through chokidar (which in turn uses it through anymatch).

Specifying extension watch list

By 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:

nodemon -e js,pug

Now nodemon will restart on any changes to files in the directory (or subdirectories) with the extensions .js, .pug.

Ignoring files

By 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.

This can be done via the command line:

nodemon --ignore lib/ --ignore tests/

Or specific files can be ignored:

nodemon --ignore lib/app.js

Patterns can also be ignored (but be sure to quote the arguments):

nodemon --ignore 'lib/*.js'

Important the ignore rules are patterns matched to the full absolute path, and this determines how many files are monitored. If using a wild card glob pattern, it needs to be used as ** or omitted entirely. For example, nodemon --ignore '**/test/**' will work, whereas --ignore '*/test/*' will not.

Note 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.

Application isn't restarting

In 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.

Via the CLI, use either --legacy-watch or -L for short:

nodemon -L

Though this should be a last resort as it will poll every file it can find.

Delaying restarting

In 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.

To add an extra throttle, or delay restarting, use the --delay command:

nodemon --delay 10 server.js

For more precision, milliseconds can be specified. Either as a float:

nodemon --delay 2.5 server.js

Or using the time specifier (ms):

nodemon --delay 2500ms server.js

The 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.

If you are setting this value in nodemon.json, the value will always be interpreted in milliseconds. E.g., the following are equivalent:

nodemon --delay 2.5

{
  "delay": 2500
}

Gracefully reloading down your script

It is possible to have nodemon send any signal that you specify to your application.

nodemon --signal SIGHUP server.js

Your application can handle the signal as follows.

process.on("SIGHUP", function () {
  reloadSomeConfiguration();
  process.kill(process.pid, "SIGTERM");
})

Please note that nodemon will send this signal to every process in the process tree.

If 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.

if (cluster.isMaster) {
  process.on("SIGHUP", function () {
    for (const worker of Object.values(cluster.workers)) {
      worker.process.kill("SIGTERM");
    }
  });
} else {
  process.on("SIGHUP", function() {})
}

Controlling shutdown of your script

nodemon 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.

The 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:

// important to use `on` and not `once` as nodemon can re-send the kill signal
process.on('SIGUSR2', function () {
  gracefulShutdown(function () {
    process.kill(process.pid, 'SIGTERM');
  });
});

Note that the process.kill is only called once your shutdown jobs are complete. Hat tip to Benjie Gillam for writing this technique up.

Triggering events when nodemon state changes

If 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.

For example, to trigger a notification on a Mac when nodemon restarts, nodemon.json looks like this:

{
  "events": {
    "restart": "osascript -e 'display notification \"app restarted\" with title \"nodemon\"'"
  }
}

A full list of available events is listed on the event states wiki. Note that you can bind to both states and messages.

Pipe output to somewhere else

nodemon({
  script: ...,
  stdout: false // important: this tells nodemon not to output to console
}).on('readable', function() { // the `readable` event indicates that data is ready to pick up
  this.stdout.pipe(fs.createWriteStream('output.txt'));
  this.stderr.pipe(fs.createWriteStream('err.txt'));
});

Using nodemon in your gulp workflow

Check out the gulp-nodemon plugin to integrate nodemon with the rest of your project's gulp workflow.

Using nodemon in your Grunt workflow

Check out the grunt-nodemon plugin to integrate nodemon with the rest of your project's grunt workflow.

Pronunciation

nodemon, is it pronounced: node-mon, no-demon or node-e-mon (like pokémon)?

Well...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.

The 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 :)

Design principles

  • Fewer flags is better
  • Works across all platforms
  • Fewer features
  • Let individuals build on top of nodemon
  • Offer all CLI functionality as an API
  • Contributions must have and pass tests

Nodemon is not perfect, and CLI arguments has sprawled beyond where I'm completely happy, but perhaps it can be reduced a little one day.

FAQ

See the FAQ and please add your own questions if you think they would help others.

Backers

Thank you to all our backers! 🙏

nodemon backers

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. Sponsor this project today ❤️

buy instagram followers on skweezer.net today Netpositive KasynoHEX Casinoonlineaams.com Best online casinos not on GamStop in the UK TheCasinoDB Marketing Rating of best betting sites in Australia inkedin Goread.io Best Australian online casinos. Reviewed by Correct Casinos. Casino utan svensk licens Do My Online Class - NoNeedToStudy.com Slotmachineweb.com Website dedicated to finding the best and safest licensed online casinos in India nongamstopcasinos.net Scommesse777 Twicsy At Casinoaustraliaonline.com, we review, compare and list all the best gambling sites for Aussies.
Casinon utan svensk licens erbjuder generösa bonusar och kampanjer. Besök coolspins.net för att utforska säkra och pålitliga alternativ. BestUSCasinos TightPoker Buy Instagram Likes Norway's biggest and most reliable online casino portal OnlineCasinosSpelen Beoordelen van nieuwe online casino's 2023 CasinoZonderRegistratie.net - Nederlandse Top Casino's OnlineCasinoProfy is your guide to the world of gambling. Ilmaiset Pitkävetovihjeet Famoid is a digital marketing agency that specializes in social media services and tools. LookSlots Gives a fun for our users We are the leading Nearshore Technology Solutions company. We architect and engineer scalable and high-performing software solutions. Buy real Instagram followers from Twicsy starting at only $2.97. Twicsy has been voted the best site to buy followers from the likes of US Magazine. SocialWick offers the best Instagram Followers in the market. If you are looking to boost your organic growth, buy Instagram followers from SocialWick Online United States Casinos Aviators Online iGaming platform with reliable and trusted reviews. Online Casinos Australia Looking to boost your YouTube channel? Buy YouTube subscribers with Views4You and watch your audience grow! Buy Telegram Members We review the entire iGaming industry from A to Z free spins no deposit aussiecasinoreviewer.com MEGAFAMOUS.com PopularityBazaar helps you quickly grow your social media accounts. Buy 100% real likes, followers, views, comments, and more to kickstart your online presence. Non-GamStop NonStop Casino philippinescasinos.ph Incognito NonGamStopBets Casinos not on GamStop Buy real Instagram followers from Stormlikes starting at only $2.97. Stormlikes has been voted the best site to buy followers from the likes of US Magazine. UpGrow is the Best Instagram Growth Service in 2024. Get more real Instagram followers with our AI-powered growth engine to get 10x faster results. Analysis of payment methods for use in the iGaming 30 Best Casinos Not on Gamstop in 2024 No deposit casino promo Codes 2024 - The best online Casinos websites. No deposit bonus codes, Free Spins and Promo Codes. Stake, Roobet, Jackpotcity and more. Online casino. Listing no deposit bonus offers from various internet sites . Fortune Tiger Parimatch ExpressFollowers SidesMedia BuitenlandseOnlineCasinos Find the social proof you need to reach your audience! Boost conversions. Quickly buy Twitter Followers & more with no sign-up. Taking you to the next Buy Instagram Followers, Likes, Views & Comments At Graming, we offer top-notch quality TikTok views at the best prices! Check out our deals below and order now! Insfollowpro sells Instagram followers, likes, views. top 6 online real money casino Canada Boost your social media presence effortlessly with top-quality Instagram and TikTok followers and likes. Porównanie kasyn online w Polsce. Darmowe automaty online. https://buyyoutubviews.com Сasinorevisor.com

Please note that links to the sponsors above are not direct endorsements nor affiliated with any of contributors of the nodemon project.

License

MIT http://rem.mit-license.org

remy/nodemon

{
"props": {
"initialPayload": {
"allShortcutsEnabled": false,
"path": "/",
"repo": {
"id": 958314,
"defaultBranch": "main",
"name": "nodemon",
"ownerLogin": "remy",
"currentUserCanPush": false,
"isFork": false,
"isEmpty": false,
"createdAt": "2010-10-03T12:50:52.000Z",
"ownerAvatar": "https://avatars.githubusercontent.com/u/13700?v=4",
"public": true,
"private": false,
"isOrgOwned": false
},
"currentUser": null,
"refInfo": {
"name": "main",
"listCacheKey": "v0:1718870832.0",
"canEdit": false,
"refType": "branch",
"currentOid": "58b7a324890e945a4271519dca08f0a4cd99d3e9"
},
"tree": {
"items": [
{
"name": ".github",
"path": ".github",
"contentType": "directory"
},
{
"name": "bin",
"path": "bin",
"contentType": "directory"
},
{
"name": "doc",
"path": "doc",
"contentType": "directory"
},
{
"name": "lib",
"path": "lib",
"contentType": "directory"
},
{
"name": "test",
"path": "test",
"contentType": "directory"
},
{
"name": "website",
"path": "website",
"contentType": "directory"
},
{
"name": ".eslintrc.json",
"path": ".eslintrc.json",
"contentType": "file"
},
{
"name": ".gitignore",
"path": ".gitignore",
"contentType": "file"
},
{
"name": ".jshintrc",
"path": ".jshintrc",
"contentType": "file"
},
{
"name": ".npmignore",
"path": ".npmignore",
"contentType": "file"
},
{
"name": ".npmrc",
"path": ".npmrc",
"contentType": "file"
},
{
"name": ".prettierrc.json",
"path": ".prettierrc.json",
"contentType": "file"
},
{
"name": ".releaserc",
"path": ".releaserc",
"contentType": "file"
},
{
"name": ".travis.yml",
"path": ".travis.yml",
"contentType": "file"
},
{
"name": "CODE_OF_CONDUCT.md",
"path": "CODE_OF_CONDUCT.md",
"contentType": "file"
},
{
"name": "Dockerfile",
"path": "Dockerfile",
"contentType": "file"
},
{
"name": "LICENSE",
"path": "LICENSE",
"contentType": "file"
},
{
"name": "README.md",
"path": "README.md",
"contentType": "file"
},
{
"name": "TODO.md",
"path": "TODO.md",
"contentType": "file"
},
{
"name": "commitlint.config.js",
"path": "commitlint.config.js",
"contentType": "file"
},
{
"name": "faq.md",
"path": "faq.md",
"contentType": "file"
},
{
"name": "index.d.ts",
"path": "index.d.ts",
"contentType": "file"
},
{
"name": "jsconfig.json",
"path": "jsconfig.json",
"contentType": "file"
},
{
"name": "package-lock.json",
"path": "package-lock.json",
"contentType": "file"
},
{
"name": "package.json",
"path": "package.json",
"contentType": "file"
}
],
"templateDirectorySuggestionUrl": null,
"readme": null,
"totalCount": 25,
"showBranchInfobar": false
},
"fileTree": null,
"fileTreeProcessingTime": null,
"foldersToFetch": [],
"treeExpanded": false,
"symbolsExpanded": false,
"isOverview": true,
"overview": {
"banners": {
"shouldRecommendReadme": false,
"isPersonalRepo": false,
"showUseActionBanner": false,
"actionSlug": null,
"actionId": null,
"showProtectBranchBanner": false,
"publishBannersInfo": {
"dismissActionNoticePath": "/settings/dismiss-notice/publish_action_from_repo",
"releasePath": "/remy/nodemon/releases/new?marketplace=true",
"showPublishActionBanner": false
},
"interactionLimitBanner": null,
"showInvitationBanner": false,
"inviterName": null
},
"codeButton": {
"contactPath": "/contact",
"isEnterprise": false,
"local": {
"protocolInfo": {
"httpAvailable": true,
"sshAvailable": null,
"httpUrl": "https://github.com/remy/nodemon.git",
"showCloneWarning": null,
"sshUrl": null,
"sshCertificatesRequired": null,
"sshCertificatesAvailable": null,
"ghCliUrl": "gh repo clone remy/nodemon",
"defaultProtocol": "http",
"newSshKeyUrl": "/settings/ssh/new",
"setProtocolPath": "/users/set_protocol"
},
"platformInfo": {
"cloneUrl": "https://desktop.github.com",
"showVisualStudioCloneButton": false,
"visualStudioCloneUrl": "https://windows.github.com",
"showXcodeCloneButton": false,
"xcodeCloneUrl": "https://developer.apple.com",
"zipballUrl": "/remy/nodemon/archive/refs/heads/main.zip"
}
},
"newCodespacePath": "/codespaces/new?hide_repo_select=true&repo=958314"
},
"popovers": {
"rename": null,
"renamedParentRepo": null
},
"commitCount": "1,372",
"overviewFiles": [
{
"displayName": "README.md",
"repoName": "nodemon",
"refName": "main",
"path": "README.md",
"preferredFileType": "readme",
"tabName": "README",
"richText": "<article class=\"markdown-body entry-content container-lg\" itemprop=\"text\"><p align=\"center\" dir=\"auto\">\n <a href=\"https://nodemon.io/\" rel=\"nofollow\"><img src=\"https://user-images.githubusercontent.com/13700/35731649-652807e8-080e-11e8-88fd-1b2f6d553b2d.png\" alt=\"Nodemon Logo\" style=\"max-width: 100%;\"></a>\n</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h1 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">nodemon</h1><a id=\"user-content-nodemon\" class=\"anchor\" aria-label=\"Permalink: nodemon\" href=\"#nodemon\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">nodemon is a tool that helps develop Node.js based applications by automatically restarting the node application when file changes in the directory are detected.</p>\n<p dir=\"auto\">nodemon does <strong>not</strong> require <em>any</em> additional changes to your code or method of development. nodemon is a replacement wrapper for <code>node</code>. To use <code>nodemon</code>, replace the word <code>node</code> on the command line when executing your script.</p>\n<p dir=\"auto\"><a href=\"https://npmjs.org/package/nodemon\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/46e14d98db48cde9fbf1def48cbbe7fb9544770103ea4e51451aaad12cdd37ba/68747470733a2f2f62616467652e667572792e696f2f6a732f6e6f64656d6f6e2e737667\" alt=\"NPM version\" data-canonical-src=\"https://badge.fury.io/js/nodemon.svg\" style=\"max-width: 100%;\"></a>\n<a href=\"#backers\"><img src=\"https://camo.githubusercontent.com/a7271c7b2f8a8085cda49af47b19bb80638071e5baffec12eb60857553c5fac7/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f6e6f64656d6f6e2f6261636b6572732f62616467652e737667\" alt=\"Backers on Open Collective\" data-canonical-src=\"https://opencollective.com/nodemon/backers/badge.svg\" style=\"max-width: 100%;\"></a> <a href=\"#sponsors\"><img src=\"https://camo.githubusercontent.com/8775d37f7ddc130dbbf986de99884d9b5ec8d1c518ea3c9c07468ad54fce3ed3/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f6e6f64656d6f6e2f73706f6e736f72732f62616467652e737667\" alt=\"Sponsors on Open Collective\" data-canonical-src=\"https://opencollective.com/nodemon/sponsors/badge.svg\" style=\"max-width: 100%;\"></a></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h1 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Installation</h1><a id=\"user-content-installation\" class=\"anchor\" aria-label=\"Permalink: Installation\" href=\"#installation\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Either through cloning with git or by using <a href=\"http://npmjs.org\" rel=\"nofollow\">npm</a> (the recommended way):</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"npm install -g nodemon # or using yarn: yarn global add nodemon\"><pre>npm install -g nodemon <span class=\"pl-c\"><span class=\"pl-c\">#</span> or using yarn: yarn global add nodemon</span></pre></div>\n<p dir=\"auto\">And nodemon will be installed globally to your system path.</p>\n<p dir=\"auto\">You can also install nodemon as a development dependency:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"npm install --save-dev nodemon # or using yarn: yarn add nodemon -D\"><pre>npm install --save-dev nodemon <span class=\"pl-c\"><span class=\"pl-c\">#</span> or using yarn: yarn add nodemon -D</span></pre></div>\n<p dir=\"auto\">With 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 <code>npm start</code>) or using <code>npx nodemon</code>.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h1 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Usage</h1><a id=\"user-content-usage\" class=\"anchor\" aria-label=\"Permalink: Usage\" href=\"#usage\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">nodemon wraps your application, so you can pass all the arguments you would normally pass to your app:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"nodemon [your node app]\"><pre>nodemon [your node app]</pre></div>\n<p dir=\"auto\">For CLI options, use the <code>-h</code> (or <code>--help</code>) argument:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"nodemon -h\"><pre>nodemon -h</pre></div>\n<p dir=\"auto\">Using nodemon is simple, if my application accepted a host and port as the arguments, I would start it as so:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"nodemon ./server.js localhost 8080\"><pre>nodemon ./server.js localhost 8080</pre></div>\n<p dir=\"auto\">Any output from this script is prefixed with <code>[nodemon]</code>, otherwise all output from your application, errors included, will be echoed out as expected.</p>\n<p dir=\"auto\">You can also pass the <code>inspect</code> flag to node through the command line as you would normally:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"nodemon --inspect ./server.js 80\"><pre>nodemon --inspect ./server.js 80</pre></div>\n<p dir=\"auto\">If you have a <code>package.json</code> file for your app, you can omit the main script entirely and nodemon will read the <code>package.json</code> for the <code>main</code> property and use that value as the app (<a href=\"https://github.com/remy/nodemon/issues/14\" data-hovercard-type=\"issue\" data-hovercard-url=\"/remy/nodemon/issues/14/hovercard\">ref</a>).</p>\n<p dir=\"auto\">nodemon will also search for the <code>scripts.start</code> property in <code>package.json</code> (as of nodemon 1.1.x).</p>\n<p dir=\"auto\">Also check out the <a href=\"https://github.com/remy/nodemon/blob/master/faq.md\">FAQ</a> or <a href=\"https://github.com/remy/nodemon/issues\">issues</a> for nodemon.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Automatic re-running</h2><a id=\"user-content-automatic-re-running\" class=\"anchor\" aria-label=\"Permalink: Automatic re-running\" href=\"#automatic-re-running\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">nodemon 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.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Manual restarting</h2><a id=\"user-content-manual-restarting\" class=\"anchor\" aria-label=\"Permalink: Manual restarting\" href=\"#manual-restarting\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Whilst nodemon is running, if you need to manually restart your application, instead of stopping and restart nodemon, you can type <code>rs</code> with a carriage return, and nodemon will restart your process.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Config files</h2><a id=\"user-content-config-files\" class=\"anchor\" aria-label=\"Permalink: Config files\" href=\"#config-files\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">nodemon supports local and global configuration files. These are usually named <code>nodemon.json</code> and can be located in the current working directory or in your home directory. An alternative local configuration file can be specified with the <code>--config &lt;file&gt;</code> option.</p>\n<p dir=\"auto\">The specificity is as follows, so that a command line argument will always override the config file settings:</p>\n<ul dir=\"auto\">\n<li>command line arguments</li>\n<li>local config</li>\n<li>global config</li>\n</ul>\n<p dir=\"auto\">A config file can take any of the command line arguments as JSON key values, for example:</p>\n<div class=\"highlight highlight-source-json notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"{\n &quot;verbose&quot;: true,\n &quot;ignore&quot;: [&quot;*.test.js&quot;, &quot;**/fixtures/**&quot;],\n &quot;execMap&quot;: {\n &quot;rb&quot;: &quot;ruby&quot;,\n &quot;pde&quot;: &quot;processing --sketch={{pwd}} --run&quot;\n }\n}\"><pre>{\n <span class=\"pl-ent\">\"verbose\"</span>: <span class=\"pl-c1\">true</span>,\n <span class=\"pl-ent\">\"ignore\"</span>: [<span class=\"pl-s\"><span class=\"pl-pds\">\"</span>*.test.js<span class=\"pl-pds\">\"</span></span>, <span class=\"pl-s\"><span class=\"pl-pds\">\"</span>**/fixtures/**<span class=\"pl-pds\">\"</span></span>],\n <span class=\"pl-ent\">\"execMap\"</span>: {\n <span class=\"pl-ent\">\"rb\"</span>: <span class=\"pl-s\"><span class=\"pl-pds\">\"</span>ruby<span class=\"pl-pds\">\"</span></span>,\n <span class=\"pl-ent\">\"pde\"</span>: <span class=\"pl-s\"><span class=\"pl-pds\">\"</span>processing --sketch={{pwd}} --run<span class=\"pl-pds\">\"</span></span>\n }\n}</pre></div>\n<p dir=\"auto\">The above <code>nodemon.json</code> file might be my global config so that I have support for ruby files and processing files, and I can run <code>nodemon demo.pde</code> and nodemon will automatically know how to run the script even though out of the box support for processing scripts.</p>\n<p dir=\"auto\">A further example of options can be seen in <a href=\"https://github.com/remy/nodemon/blob/master/doc/sample-nodemon.md\">sample-nodemon.md</a></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">package.json</h3><a id=\"user-content-packagejson\" class=\"anchor\" aria-label=\"Permalink: package.json\" href=\"#packagejson\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">If you want to keep all your package configurations in one place, nodemon supports using <code>package.json</code> for configuration.\nSpecify the config in the same format as you would for a config file but under <code>nodemonConfig</code> in the <code>package.json</code> file, for example, take the following <code>package.json</code>:</p>\n<div class=\"highlight highlight-source-json notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"{\n &quot;name&quot;: &quot;nodemon&quot;,\n &quot;homepage&quot;: &quot;http://nodemon.io&quot;,\n &quot;...&quot;: &quot;... other standard package.json values&quot;,\n &quot;nodemonConfig&quot;: {\n &quot;ignore&quot;: [&quot;**/test/**&quot;, &quot;**/docs/**&quot;],\n &quot;delay&quot;: 2500\n }\n}\"><pre>{\n <span class=\"pl-ent\">\"name\"</span>: <span class=\"pl-s\"><span class=\"pl-pds\">\"</span>nodemon<span class=\"pl-pds\">\"</span></span>,\n <span class=\"pl-ent\">\"homepage\"</span>: <span class=\"pl-s\"><span class=\"pl-pds\">\"</span>http://nodemon.io<span class=\"pl-pds\">\"</span></span>,\n <span class=\"pl-ent\">\"...\"</span>: <span class=\"pl-s\"><span class=\"pl-pds\">\"</span>... other standard package.json values<span class=\"pl-pds\">\"</span></span>,\n <span class=\"pl-ent\">\"nodemonConfig\"</span>: {\n <span class=\"pl-ent\">\"ignore\"</span>: [<span class=\"pl-s\"><span class=\"pl-pds\">\"</span>**/test/**<span class=\"pl-pds\">\"</span></span>, <span class=\"pl-s\"><span class=\"pl-pds\">\"</span>**/docs/**<span class=\"pl-pds\">\"</span></span>],\n <span class=\"pl-ent\">\"delay\"</span>: <span class=\"pl-c1\">2500</span>\n }\n}</pre></div>\n<p dir=\"auto\">Note that if you specify a <code>--config</code> file or provide a local <code>nodemon.json</code> any <code>package.json</code> config is ignored.</p>\n<p dir=\"auto\"><em>This section needs better documentation, but for now you can also see <code>nodemon --help config</code> (<a href=\"https://github.com/remy/nodemon/blob/master/doc/cli/config.txt\">also here</a>)</em>.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Using nodemon as a module</h2><a id=\"user-content-using-nodemon-as-a-module\" class=\"anchor\" aria-label=\"Permalink: Using nodemon as a module\" href=\"#using-nodemon-as-a-module\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Please see <a href=\"/remy/nodemon/blob/main/doc/requireable.md\">doc/requireable.md</a></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Using nodemon as child process</h2><a id=\"user-content-using-nodemon-as-child-process\" class=\"anchor\" aria-label=\"Permalink: Using nodemon as child process\" href=\"#using-nodemon-as-child-process\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Please see <a href=\"/remy/nodemon/blob/main/doc/events.md#Using_nodemon_as_child_process\">doc/events.md</a></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Running non-node scripts</h2><a id=\"user-content-running-non-node-scripts\" class=\"anchor\" aria-label=\"Permalink: Running non-node scripts\" href=\"#running-non-node-scripts\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">nodemon 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 <code>.js</code> if there's no <code>nodemon.json</code>:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"nodemon --exec &quot;python -v&quot; ./app.py\"><pre>nodemon --exec <span class=\"pl-s\"><span class=\"pl-pds\">\"</span>python -v<span class=\"pl-pds\">\"</span></span> ./app.py</pre></div>\n<p dir=\"auto\">Now nodemon will run <code>app.py</code> 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 <code>.py</code> extension.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h3 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Default executables</h3><a id=\"user-content-default-executables\" class=\"anchor\" aria-label=\"Permalink: Default executables\" href=\"#default-executables\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Using the <code>nodemon.json</code> config file, you can define your own default executables using the <code>execMap</code> property. This is particularly useful if you're working with a language that isn't supported by default by nodemon.</p>\n<p dir=\"auto\">To add support for nodemon to know about the <code>.pl</code> extension (for Perl), the <code>nodemon.json</code> file would add:</p>\n<div class=\"highlight highlight-source-json notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"{\n &quot;execMap&quot;: {\n &quot;pl&quot;: &quot;perl&quot;\n }\n}\"><pre>{\n <span class=\"pl-ent\">\"execMap\"</span>: {\n <span class=\"pl-ent\">\"pl\"</span>: <span class=\"pl-s\"><span class=\"pl-pds\">\"</span>perl<span class=\"pl-pds\">\"</span></span>\n }\n}</pre></div>\n<p dir=\"auto\">Now running the following, nodemon will know to use <code>perl</code> as the executable:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"nodemon script.pl\"><pre>nodemon script.pl</pre></div>\n<p dir=\"auto\">It's generally recommended to use the global <code>nodemon.json</code> to add your own <code>execMap</code> 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 <a href=\"https://github.com/remy/nodemon/blob/master/lib/config/defaults.js\">default.js</a> and sending a pull request.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Monitoring multiple directories</h2><a id=\"user-content-monitoring-multiple-directories\" class=\"anchor\" aria-label=\"Permalink: Monitoring multiple directories\" href=\"#monitoring-multiple-directories\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">By default nodemon monitors the current working directory. If you want to take control of that option, use the <code>--watch</code> option to add specific paths:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"nodemon --watch app --watch libs app/server.js\"><pre>nodemon --watch app --watch libs app/server.js</pre></div>\n<p dir=\"auto\">Now nodemon will only restart if there are changes in the <code>./app</code> or <code>./libs</code> directory. By default nodemon will traverse sub-directories, so there's no need in explicitly including sub-directories.</p>\n<p dir=\"auto\">Nodemon also supports unix globbing, e.g <code>--watch './lib/*'</code>. The globbing pattern must be quoted. For advanced globbing, <a href=\"https://github.com/micromatch/picomatch#advanced-globbing\">see <code>picomatch</code> documentation</a>, the library that nodemon uses through <code>chokidar</code> (which in turn uses it through <code>anymatch</code>).</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Specifying extension watch list</h2><a id=\"user-content-specifying-extension-watch-list\" class=\"anchor\" aria-label=\"Permalink: Specifying extension watch list\" href=\"#specifying-extension-watch-list\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">By default, nodemon looks for files with the <code>.js</code>, <code>.mjs</code>, <code>.coffee</code>, <code>.litcoffee</code>, and <code>.json</code> extensions. If you use the <code>--exec</code> option and monitor <code>app.py</code> nodemon will monitor files with the extension of <code>.py</code>. However, you can specify your own list with the <code>-e</code> (or <code>--ext</code>) switch like so:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"nodemon -e js,pug\"><pre>nodemon -e js,pug</pre></div>\n<p dir=\"auto\">Now nodemon will restart on any changes to files in the directory (or subdirectories) with the extensions <code>.js</code>, <code>.pug</code>.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Ignoring files</h2><a id=\"user-content-ignoring-files\" class=\"anchor\" aria-label=\"Permalink: Ignoring files\" href=\"#ignoring-files\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">By default, nodemon will only restart when a <code>.js</code> 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.</p>\n<p dir=\"auto\">This can be done via the command line:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"nodemon --ignore lib/ --ignore tests/\"><pre>nodemon --ignore lib/ --ignore tests/</pre></div>\n<p dir=\"auto\">Or specific files can be ignored:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"nodemon --ignore lib/app.js\"><pre>nodemon --ignore lib/app.js</pre></div>\n<p dir=\"auto\">Patterns can also be ignored (but be sure to quote the arguments):</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"nodemon --ignore 'lib/*.js'\"><pre>nodemon --ignore <span class=\"pl-s\"><span class=\"pl-pds\">'</span>lib/*.js<span class=\"pl-pds\">'</span></span></pre></div>\n<p dir=\"auto\"><strong>Important</strong> the ignore rules are patterns matched to the full absolute path, and this determines how many files are monitored. If using a wild card glob pattern, it needs to be used as <code>**</code> or omitted entirely. For example, <code>nodemon --ignore '**/test/**'</code> will work, whereas <code>--ignore '*/test/*'</code> will not.</p>\n<p dir=\"auto\">Note that by default, nodemon will ignore the <code>.git</code>, <code>node_modules</code>, <code>bower_components</code>, <code>.nyc_output</code>, <code>coverage</code> and <code>.sass-cache</code> directories and <em>add</em> your ignored patterns to the list. If you want to indeed watch a directory like <code>node_modules</code>, you need to <a href=\"https://github.com/remy/nodemon/blob/master/faq.md#overriding-the-underlying-default-ignore-rules\">override the underlying default ignore rules</a>.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Application isn't restarting</h2><a id=\"user-content-application-isnt-restarting\" class=\"anchor\" aria-label=\"Permalink: Application isn't restarting\" href=\"#application-isnt-restarting\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">In some networked environments (such as a container running nodemon reading across a mounted drive), you will need to use the <code>legacyWatch: true</code> which enables Chokidar's polling.</p>\n<p dir=\"auto\">Via the CLI, use either <code>--legacy-watch</code> or <code>-L</code> for short:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"nodemon -L\"><pre>nodemon -L</pre></div>\n<p dir=\"auto\">Though this should be a last resort as it will poll every file it can find.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Delaying restarting</h2><a id=\"user-content-delaying-restarting\" class=\"anchor\" aria-label=\"Permalink: Delaying restarting\" href=\"#delaying-restarting\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">In 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.</p>\n<p dir=\"auto\">To add an extra throttle, or delay restarting, use the <code>--delay</code> command:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"nodemon --delay 10 server.js\"><pre>nodemon --delay 10 server.js</pre></div>\n<p dir=\"auto\">For more precision, milliseconds can be specified. Either as a float:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"nodemon --delay 2.5 server.js\"><pre>nodemon --delay 2.5 server.js</pre></div>\n<p dir=\"auto\">Or using the time specifier (ms):</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"nodemon --delay 2500ms server.js\"><pre>nodemon --delay 2500ms server.js</pre></div>\n<p dir=\"auto\">The 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 <em>last</em> file change.</p>\n<p dir=\"auto\">If you are setting this value in <code>nodemon.json</code>, the value will always be interpreted in milliseconds. E.g., the following are equivalent:</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"nodemon --delay 2.5\n\n{\n &quot;delay&quot;: 2500\n}\"><pre>nodemon --delay 2.5\n\n{\n <span class=\"pl-s\"><span class=\"pl-pds\">\"</span>delay<span class=\"pl-pds\">\"</span></span>: 2500\n}</pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Gracefully reloading down your script</h2><a id=\"user-content-gracefully-reloading-down-your-script\" class=\"anchor\" aria-label=\"Permalink: Gracefully reloading down your script\" href=\"#gracefully-reloading-down-your-script\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">It is possible to have nodemon send any signal that you specify to your application.</p>\n<div class=\"highlight highlight-source-shell notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"nodemon --signal SIGHUP server.js\"><pre>nodemon --signal SIGHUP server.js</pre></div>\n<p dir=\"auto\">Your application can handle the signal as follows.</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"process.on(&quot;SIGHUP&quot;, function () {\n reloadSomeConfiguration();\n process.kill(process.pid, &quot;SIGTERM&quot;);\n})\"><pre><span class=\"pl-s1\">process</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">on</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">\"SIGHUP\"</span><span class=\"pl-kos\">,</span> <span class=\"pl-k\">function</span> <span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-en\">reloadSomeConfiguration</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n <span class=\"pl-s1\">process</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">kill</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">process</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">pid</span><span class=\"pl-kos\">,</span> <span class=\"pl-s\">\"SIGTERM\"</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span></pre></div>\n<p dir=\"auto\">Please note that nodemon will send this signal to every process in the process tree.</p>\n<p dir=\"auto\">If you are using <code>cluster</code>, then each workers (as well as the master) will receive the signal. If you wish to terminate all workers on receiving a <code>SIGHUP</code>, a common pattern is to catch the <code>SIGHUP</code> in the master, and forward <code>SIGTERM</code> to all workers, while ensuring that all workers ignore <code>SIGHUP</code>.</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"if (cluster.isMaster) {\n process.on(&quot;SIGHUP&quot;, function () {\n for (const worker of Object.values(cluster.workers)) {\n worker.process.kill(&quot;SIGTERM&quot;);\n }\n });\n} else {\n process.on(&quot;SIGHUP&quot;, function() {})\n}\"><pre><span class=\"pl-k\">if</span> <span class=\"pl-kos\">(</span><span class=\"pl-s1\">cluster</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">isMaster</span><span class=\"pl-kos\">)</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-s1\">process</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">on</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">\"SIGHUP\"</span><span class=\"pl-kos\">,</span> <span class=\"pl-k\">function</span> <span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-k\">for</span> <span class=\"pl-kos\">(</span><span class=\"pl-k\">const</span> <span class=\"pl-s1\">worker</span> <span class=\"pl-k\">of</span> <span class=\"pl-v\">Object</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">values</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">cluster</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">workers</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">)</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-s1\">worker</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">process</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">kill</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">\"SIGTERM\"</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n <span class=\"pl-kos\">}</span>\n <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-kos\">}</span> <span class=\"pl-k\">else</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-s1\">process</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">on</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">\"SIGHUP\"</span><span class=\"pl-kos\">,</span> <span class=\"pl-k\">function</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span> <span class=\"pl-kos\">{</span><span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span>\n<span class=\"pl-kos\">}</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Controlling shutdown of your script</h2><a id=\"user-content-controlling-shutdown-of-your-script\" class=\"anchor\" aria-label=\"Permalink: Controlling shutdown of your script\" href=\"#controlling-shutdown-of-your-script\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">nodemon 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.</p>\n<p dir=\"auto\">The following example will listen once for the <code>SIGUSR2</code> signal (used by nodemon to restart), run the clean up process and then kill itself for nodemon to continue control:</p>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"// important to use `on` and not `once` as nodemon can re-send the kill signal\nprocess.on('SIGUSR2', function () {\n gracefulShutdown(function () {\n process.kill(process.pid, 'SIGTERM');\n });\n});\"><pre><span class=\"pl-c\">// important to use `on` and not `once` as nodemon can re-send the kill signal</span>\n<span class=\"pl-s1\">process</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">on</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'SIGUSR2'</span><span class=\"pl-kos\">,</span> <span class=\"pl-k\">function</span> <span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-en\">gracefulShutdown</span><span class=\"pl-kos\">(</span><span class=\"pl-k\">function</span> <span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span> <span class=\"pl-kos\">{</span>\n <span class=\"pl-s1\">process</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">kill</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">process</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">pid</span><span class=\"pl-kos\">,</span> <span class=\"pl-s\">'SIGTERM'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n <span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<p dir=\"auto\">Note that the <code>process.kill</code> is <em>only</em> called once your shutdown jobs are complete. Hat tip to <a href=\"http://www.benjiegillam.com/2011/08/node-js-clean-restart-and-faster-development-with-nodemon/\" rel=\"nofollow\">Benjie Gillam</a> for writing this technique up.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Triggering events when nodemon state changes</h2><a id=\"user-content-triggering-events-when-nodemon-state-changes\" class=\"anchor\" aria-label=\"Permalink: Triggering events when nodemon state changes\" href=\"#triggering-events-when-nodemon-state-changes\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">If you want growl like notifications when nodemon restarts or to trigger an action when an event happens, then you can either <code>require</code> nodemon or add event actions to your <code>nodemon.json</code> file.</p>\n<p dir=\"auto\">For example, to trigger a notification on a Mac when nodemon restarts, <code>nodemon.json</code> looks like this:</p>\n<div class=\"highlight highlight-source-json notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"{\n &quot;events&quot;: {\n &quot;restart&quot;: &quot;osascript -e 'display notification \\&quot;app restarted\\&quot; with title \\&quot;nodemon\\&quot;'&quot;\n }\n}\"><pre>{\n <span class=\"pl-ent\">\"events\"</span>: {\n <span class=\"pl-ent\">\"restart\"</span>: <span class=\"pl-s\"><span class=\"pl-pds\">\"</span>osascript -e 'display notification <span class=\"pl-cce\">\\\"</span>app restarted<span class=\"pl-cce\">\\\"</span> with title <span class=\"pl-cce\">\\\"</span>nodemon<span class=\"pl-cce\">\\\"</span>'<span class=\"pl-pds\">\"</span></span>\n }\n}</pre></div>\n<p dir=\"auto\">A full list of available events is listed on the <a href=\"https://github.com/remy/nodemon/wiki/Events#states\">event states wiki</a>. Note that you can bind to both states and messages.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Pipe output to somewhere else</h2><a id=\"user-content-pipe-output-to-somewhere-else\" class=\"anchor\" aria-label=\"Permalink: Pipe output to somewhere else\" href=\"#pipe-output-to-somewhere-else\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<div class=\"highlight highlight-source-js notranslate position-relative overflow-auto\" dir=\"auto\" data-snippet-clipboard-copy-content=\"nodemon({\n script: ...,\n stdout: false // important: this tells nodemon not to output to console\n}).on('readable', function() { // the `readable` event indicates that data is ready to pick up\n this.stdout.pipe(fs.createWriteStream('output.txt'));\n this.stderr.pipe(fs.createWriteStream('err.txt'));\n});\"><pre><span class=\"pl-en\">nodemon</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">{</span>\n <span class=\"pl-c1\">script</span>: ...<span class=\"pl-s1\"></span><span class=\"pl-kos\">,</span>\n <span class=\"pl-c1\">stdout</span>: <span class=\"pl-s1\">false</span> <span class=\"pl-c\">// important: this tells nodemon not to output to console</span>\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">on</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'readable'</span><span class=\"pl-kos\">,</span> <span class=\"pl-k\">function</span><span class=\"pl-kos\">(</span><span class=\"pl-kos\">)</span> <span class=\"pl-kos\">{</span> <span class=\"pl-c\">// the `readable` event indicates that data is ready to pick up</span>\n <span class=\"pl-smi\">this</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">stdout</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">pipe</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">fs</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">createWriteStream</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'output.txt'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n <span class=\"pl-smi\">this</span><span class=\"pl-kos\">.</span><span class=\"pl-c1\">stderr</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">pipe</span><span class=\"pl-kos\">(</span><span class=\"pl-s1\">fs</span><span class=\"pl-kos\">.</span><span class=\"pl-en\">createWriteStream</span><span class=\"pl-kos\">(</span><span class=\"pl-s\">'err.txt'</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span>\n<span class=\"pl-kos\">}</span><span class=\"pl-kos\">)</span><span class=\"pl-kos\">;</span></pre></div>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Using nodemon in your gulp workflow</h2><a id=\"user-content-using-nodemon-in-your-gulp-workflow\" class=\"anchor\" aria-label=\"Permalink: Using nodemon in your gulp workflow\" href=\"#using-nodemon-in-your-gulp-workflow\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Check out the <a href=\"https://github.com/JacksonGariety/gulp-nodemon\">gulp-nodemon</a> plugin to integrate nodemon with the rest of your project's gulp workflow.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Using nodemon in your Grunt workflow</h2><a id=\"user-content-using-nodemon-in-your-grunt-workflow\" class=\"anchor\" aria-label=\"Permalink: Using nodemon in your Grunt workflow\" href=\"#using-nodemon-in-your-grunt-workflow\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Check out the <a href=\"https://github.com/ChrisWren/grunt-nodemon\">grunt-nodemon</a> plugin to integrate nodemon with the rest of your project's grunt workflow.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Pronunciation</h2><a id=\"user-content-pronunciation\" class=\"anchor\" aria-label=\"Permalink: Pronunciation\" href=\"#pronunciation\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<blockquote>\n<p dir=\"auto\">nodemon, is it pronounced: node-mon, no-demon or node-e-mon (like pokémon)?</p>\n</blockquote>\n<p dir=\"auto\">Well...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.</p>\n<p dir=\"auto\">The 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 :)</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Design principles</h2><a id=\"user-content-design-principles\" class=\"anchor\" aria-label=\"Permalink: Design principles\" href=\"#design-principles\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<ul dir=\"auto\">\n<li>Fewer flags is better</li>\n<li>Works across all platforms</li>\n<li>Fewer features</li>\n<li>Let individuals build on top of nodemon</li>\n<li>Offer all CLI functionality as an API</li>\n<li>Contributions must have and pass tests</li>\n</ul>\n<p dir=\"auto\">Nodemon is not perfect, and CLI arguments has sprawled beyond where I'm completely happy, but perhaps it can be reduced a little one day.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">FAQ</h2><a id=\"user-content-faq\" class=\"anchor\" aria-label=\"Permalink: FAQ\" href=\"#faq\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">See the <a href=\"https://github.com/remy/nodemon/blob/master/faq.md\">FAQ</a> and please add your own questions if you think they would help others.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Backers</h2><a id=\"user-content-backers\" class=\"anchor\" aria-label=\"Permalink: Backers\" href=\"#backers\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Thank you to all <a href=\"https://opencollective.com/nodemon#backer\" rel=\"nofollow\">our backers</a>! 🙏</p>\n<p dir=\"auto\"><a href=\"https://opencollective.com/nodemon#backers\" rel=\"nofollow\"><img src=\"https://camo.githubusercontent.com/7298977f91ba9e1828e7fe8c6dba0a8ecfc5aad6f87b186461ffe643ca261046/68747470733a2f2f6f70656e636f6c6c6563746976652e636f6d2f6e6f64656d6f6e2f6261636b6572732e7376673f77696474683d383930\" alt=\"nodemon backers\" data-canonical-src=\"https://opencollective.com/nodemon/backers.svg?width=890\" style=\"max-width: 100%;\"></a></p>\n<div class=\"markdown-heading\" dir=\"auto\"><h2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">Sponsors</h2><a id=\"user-content-sponsors\" class=\"anchor\" aria-label=\"Permalink: Sponsors\" href=\"#sponsors\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">Support this project by becoming a sponsor. Your logo will show up here with a link to your website. <a href=\"https://opencollective.com/nodemon#sponsor\" rel=\"nofollow\">Sponsor this project today ❤️</a></p>\n<div dir=\"auto\"><a title=\"buy instagram followers on skweezer.net today\" href=\"https://skweezer.net/buy-instagram-followers\" rel=\"nofollow\"><img alt=\"buy instagram followers on skweezer.net today\" src=\"https://camo.githubusercontent.com/37b120f929a211f15150a1ca28aebae0bfa07e0c7642a32e491eb0cdd633cd4c/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f62306464636231622d393035342d343232302d386437322d3035313331623238613262622f6c6f676f2d736b7765657a65722d69636f6e2e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/b0ddcb1b-9054-4220-8d72-05131b28a2bb/logo-skweezer-icon.png\" style=\"max-width: 100%;\"></a>\n<a title=\"Netpositive\" href=\"https://najlepsibukmacherzy.pl/ranking-legalnych-bukmacherow/\" rel=\"nofollow\"><img alt=\"Netpositive\" src=\"https://camo.githubusercontent.com/0f6674a759f62ba741cbd9c23585a9730dd76bc69cbd3d00c4a6461cfa4e15af/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f35326163656366302d363038612d313165622d623137662d3562636137633637666537622e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/52acecf0-608a-11eb-b17f-5bca7c67fe7b.png\" style=\"max-width: 100%;\"></a>\n<a title=\"KasynoHEX\" href=\"https://pl.polskiekasynohex.org/\" rel=\"nofollow\"><img alt=\"KasynoHEX\" src=\"https://camo.githubusercontent.com/012b09a79cbb40767f36b783665835864b25ffe803b0ed9310b072276c517858/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f32626230643665302d393963382d313165612d393334392d3139396161306435643234612e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/2bb0d6e0-99c8-11ea-9349-199aa0d5d24a.png\" style=\"max-width: 100%;\"></a>\n<a title=\"Casinoonlineaams.com\" href=\"https://www.casinoonlineaams.com\" rel=\"nofollow\"><img alt=\"Casinoonlineaams.com\" src=\"https://camo.githubusercontent.com/8d4927822c8da7aad8b8857afd8332bc5a1ab6cfa18135657d1cc5f9ee708bc9/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f36316263663164302d343363652d313165642d623536322d3662663536376663653166642e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/61bcf1d0-43ce-11ed-b562-6bf567fce1fd.png\" style=\"max-width: 100%;\"></a>\n<a title=\"Best online casinos not on GamStop in the UK\" href=\"https://casino-wise.com/\" rel=\"nofollow\"><img alt=\"Best online casinos not on GamStop in the UK\" src=\"https://camo.githubusercontent.com/d3e202d8b58879ab574007f557dfe7fc7023a2db9d811ecce1fc5c2d4857a4d6/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f66383839643230392d613933312d346330362d613532392d6665316638366334313162662f636173696e6f2d776973652d6c6f676f2e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/f889d209-a931-4c06-a529-fe1f86c411bf/casino-wise-logo.png\" style=\"max-width: 100%;\"></a>\n<a title=\"TheCasinoDB\" href=\"https://www.thecasinodb.com\" rel=\"nofollow\"><img alt=\"TheCasinoDB\" src=\"https://camo.githubusercontent.com/5fe82818875668396d3098f1b2e76f1ad180f219ab176852bc3aeaff281c7d57/68747470733a2f2f6c6f676f2e636c6561726269742e636f6d2f746865636173696e6f64622e636f6d\" height=\"120\" width=\"120\" data-canonical-src=\"https://logo.clearbit.com/thecasinodb.com\" style=\"max-width: 100%;\"></a>\n<a title=\"Marketing\" href=\"https://www.casinoutansvenskalicensen.se/\" rel=\"nofollow\"><img alt=\"Marketing\" src=\"https://camo.githubusercontent.com/c2671f860671d704da4cd7f6f7624053d1b4110680b0d019b60a565888ca7a5e/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f65643130356362302d623031662d313165632d393335662d3737633134626532306139302e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/ed105cb0-b01f-11ec-935f-77c14be20a90.png\" style=\"max-width: 100%;\"></a>\n<a title=\"Rating of best betting sites in Australia\" href=\"https://hellsbet.com/en-au/\" rel=\"nofollow\"><img alt=\"Rating of best betting sites in Australia\" src=\"https://camo.githubusercontent.com/165944a03597771fca7a25492fbcd60784f6b2a138e28b82cda879152b766ea8/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f61656239396531302d643165632d313165632d383862652d6639613135636139663666382e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/aeb99e10-d1ec-11ec-88be-f9a15ca9f6f8.png\" style=\"max-width: 100%;\"></a>\n<a title=\"inkedin\" href=\"https://inkedin.com\" rel=\"nofollow\"><img alt=\"inkedin\" src=\"https://camo.githubusercontent.com/81887752254a066a79a516d4f4ded2032e990d52bd2d48d9528144a5ef91c0d4/68747470733a2f2f6c6f676f2e636c6561726269742e636f6d2f696e6b6564696e2e636f6d\" height=\"120\" width=\"120\" data-canonical-src=\"https://logo.clearbit.com/inkedin.com\" style=\"max-width: 100%;\"></a>\n<a title=\"Goread.io\" href=\"https://goread.io/buy-instagram-followers\" rel=\"nofollow\"><img alt=\"Goread.io\" src=\"https://camo.githubusercontent.com/6e6722b997b0694b75df645c6f943dc981af972a7101dcfd1181152f822ee878/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f37643133303261302d306633332d313165642d613039342d3364636137386165633763642e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/7d1302a0-0f33-11ed-a094-3dca78aec7cd.png\" style=\"max-width: 100%;\"></a>\n<a title=\"Best Australian online casinos. Reviewed by Correct Casinos.\" href=\"https://www.correctcasinos.com/australian-online-casinos/\" rel=\"nofollow\"><img alt=\"Best Australian online casinos. Reviewed by Correct Casinos.\" src=\"https://camo.githubusercontent.com/e6dec38999c6ee1a83c6b346bf410806871bb0d13ed393ecf2c16c6153e8b7ae/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f66656639353230302d313535312d313165642d626133662d3431306336313438373763382e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/fef95200-1551-11ed-ba3f-410c614877c8.png\" style=\"max-width: 100%;\"></a>\n<a title=\"Casino utan svensk licens\" href=\"https://casinoburst.com/casino-utan-licens/\" rel=\"nofollow\"><img alt=\"Casino utan svensk licens\" src=\"https://camo.githubusercontent.com/3698f4cad8b77a3eb94d77c357f3b293af81beee84e979f066b7a00c5fefcfe0/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f61633631643739302d316433632d313165642d623864622d3762373962363562306462622e504e47\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/ac61d790-1d3c-11ed-b8db-7b79b65b0dbb.PNG\" style=\"max-width: 100%;\"></a>\n<a title=\"\" href=\"https://www.uudetkasinot.com\" rel=\"nofollow\"><img alt=\"\" src=\"https://camo.githubusercontent.com/a221d16a9276cda99d1602317f20597d8b1af3a4f2a1e2cbea41d2b565bf97f6/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f62363035353935302d646630302d313165622d396361612d6235386634306164656364352e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/b6055950-df00-11eb-9caa-b58f40adecd5.png\" style=\"max-width: 100%;\"></a>\n<a title=\"Do My Online Class - NoNeedToStudy.com\" href=\"https://www.noneedtostudy.com/take-my-online-class/\" rel=\"nofollow\"><img alt=\"Do My Online Class - NoNeedToStudy.com\" src=\"https://user-images.githubusercontent.com/13700/187039696-e2d8cd59-8b4e-438f-a052-69095212427d.png\" height=\"120\" width=\"120\" style=\"max-width: 100%;\"></a>\n<a title=\"Slotmachineweb.com\" href=\"https://www.slotmachineweb.com/\" rel=\"nofollow\"><img alt=\"Slotmachineweb.com\" src=\"https://camo.githubusercontent.com/a0441f37e816e614f1716bcb839f4a69beb3c82ded161fa3093668ada4557c1c/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f31373266396562302d323263322d313165642d613062352d3937343237303836623461612e6a7067\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/172f9eb0-22c2-11ed-a0b5-97427086b4aa.jpg\" style=\"max-width: 100%;\"></a>\n<a title=\"Website dedicated to finding the best and safest licensed online casinos in India\" href=\"https://www.ghotala.com/\" rel=\"nofollow\"><img alt=\"Website dedicated to finding the best and safest licensed online casinos in India\" src=\"https://camo.githubusercontent.com/6670a342edb697614bf24ab3c24df2e512dce3d55f8c9c837d888e97e6e3f478/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f37356166613965302d346163362d313165642d386436612d6664636338633064303733362e6a7067\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/75afa9e0-4ac6-11ed-8d6a-fdcc8c0d0736.jpg\" style=\"max-width: 100%;\"></a>\n<a title=\"nongamstopcasinos.net\" href=\"https://nongamstopcasinos.net/gb/\" rel=\"nofollow\"><img alt=\"nongamstopcasinos.net\" src=\"https://camo.githubusercontent.com/5647addf6eab783b024978b23a20809295e99e4bb8fef1e511a0b53b362f4632/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f66623862356261302d333930342d313165642d383531362d6564643762373638376133362e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/fb8b5ba0-3904-11ed-8516-edd7b7687a36.png\" style=\"max-width: 100%;\"></a>\n<a title=\"Scommesse777\" href=\"https://www.scommesse777.com/\" rel=\"nofollow\"><img alt=\"Scommesse777\" src=\"https://camo.githubusercontent.com/be93c3b51d5e54393d2543968b126da47e316ff8c16adfc96dba2cc6785a1e69/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f63303334366362302d376164342d313165642d613963662d3439646333353336393736652e6a7067\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/c0346cb0-7ad4-11ed-a9cf-49dc3536976e.jpg\" style=\"max-width: 100%;\"></a>\n<a title=\"Twicsy\" href=\"https://twicsy.com/buy-instagram-likes\" rel=\"nofollow\"><img alt=\"Twicsy\" src=\"https://camo.githubusercontent.com/9172baf801705ec787179477ba97e5cec84770e9d4be50a9dd3c73faa32281c7/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f31396262393562302d376265332d313165642d383733342d3464303735363866396339352e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/19bb95b0-7be3-11ed-8734-4d07568f9c95.png\" style=\"max-width: 100%;\"></a>\n<a title=\"At Casinoaustraliaonline.com, we review, compare and list all the best gambling sites for Aussies.\n\" href=\"https://www.casinoaustraliaonline.com/under-1-hour-withdrawal-casinos/\" rel=\"nofollow\"><img alt=\"At Casinoaustraliaonline.com, we review, compare and list all the best gambling sites for Aussies.\n\" src=\"https://camo.githubusercontent.com/fe60cbe44b01d92a9f9b19eb104ed12bab256f15822b925a4dc8decf1ce5ce4a/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f37633364383166302d386361642d313165642d623034382d3935656334363731366234372e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/7c3d81f0-8cad-11ed-b048-95ec46716b47.png\" style=\"max-width: 100%;\"></a>\n<a title=\"Casinon utan svensk licens erbjuder generösa bonusar och kampanjer. Besök coolspins.net för att utforska säkra och pålitliga alternativ.\" href=\"https://coolspins.net/\" rel=\"nofollow\"><img alt=\"Casinon utan svensk licens erbjuder generösa bonusar och kampanjer. Besök coolspins.net för att utforska säkra och pålitliga alternativ.\" src=\"https://camo.githubusercontent.com/42c1082cc0b8a472cc40c7acac9c43ef363d9235fc13675dd08e70f31c2807d7/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f62633536646230372d616639322d346662372d623437642d3934316231633438383033652f6c6f676f732e77656270\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/bc56db07-af92-4fb7-b47d-941b1c48803e/logos.webp\" style=\"max-width: 100%;\"></a>\n<a title=\"BestUSCasinos\" href=\"https://bestuscasinos.org\" rel=\"nofollow\"><img alt=\"BestUSCasinos\" src=\"https://camo.githubusercontent.com/d54908269ff70ade1375606bc6345ada6fc8ce5afe8d35eefb82d783d95dad81/68747470733a2f2f6c6f676f2e636c6561726269742e636f6d2f626573747573636173696e6f732e6f7267\" height=\"120\" width=\"120\" data-canonical-src=\"https://logo.clearbit.com/bestuscasinos.org\" style=\"max-width: 100%;\"></a>\n<a title=\"TightPoker\" href=\"https://www.tightpoker.com/\" rel=\"nofollow\"><img alt=\"TightPoker\" src=\"https://camo.githubusercontent.com/e09b50faca1967891fdac430e8c655dfc133b3917a11b8fe329730ecb8d533c9/68747470733a2f2f6c6f676f2e636c6561726269742e636f6d2f7469676874706f6b65722e636f6d\" height=\"120\" width=\"120\" data-canonical-src=\"https://logo.clearbit.com/tightpoker.com\" style=\"max-width: 100%;\"></a>\n<a title=\"Buy Instagram Likes\" href=\"https://poprey.com/\" rel=\"nofollow\"><img alt=\"Buy Instagram Likes\" src=\"https://camo.githubusercontent.com/ac8f08e44d8717f38dc399c44cb072ce73e0f5ed320da032e4a090b1f193279c/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f66653635303937302d633231632d313165632d613439392d6235356535346137393462342e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/fe650970-c21c-11ec-a499-b55e54a794b4.png\" style=\"max-width: 100%;\"></a>\n<a title=\"Norway's biggest and most reliable online casino portal\" href=\"https://www.nettcasino.com/\" rel=\"nofollow\"><img alt=\"Norway's biggest and most reliable online casino portal\" src=\"https://camo.githubusercontent.com/b4fde321fd912039fe8831867168a3bb7d347b1f25ec26feba06b4f23e691ea3/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f35643733396531612d373831332d343839652d616238322d3639376461666638626631322f6e657474636173696e6f2e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/5d739e1a-7813-489e-ab82-697daff8bf12/nettcasino.png\" style=\"max-width: 100%;\"></a>\n<a title=\"OnlineCasinosSpelen\" href=\"https://onlinecasinosspelen.com\" rel=\"nofollow\"><img alt=\"OnlineCasinosSpelen\" src=\"https://camo.githubusercontent.com/1512efc5d5b90d9f46a694ea667d582df262f26adef9538b549da8d59bf83f1b/68747470733a2f2f6c6f676f2e636c6561726269742e636f6d2f6f6e6c696e65636173696e6f737370656c656e2e636f6d\" height=\"120\" width=\"120\" data-canonical-src=\"https://logo.clearbit.com/onlinecasinosspelen.com\" style=\"max-width: 100%;\"></a>\n<a title=\"Beoordelen van nieuwe online casino's 2023\" href=\"https://Nieuwe-Casinos.net\" rel=\"nofollow\"><img alt=\"Beoordelen van nieuwe online casino's 2023\" src=\"https://camo.githubusercontent.com/67a82ca5356de2c6fe06d1409949aa9ac34cd0a6d0bfb3da2de99fea14736e79/68747470733a2f2f6c6f676f2e636c6561726269742e636f6d2f4e69657577652d436173696e6f732e6e6574\" height=\"120\" width=\"120\" data-canonical-src=\"https://logo.clearbit.com/Nieuwe-Casinos.net\" style=\"max-width: 100%;\"></a>\n<a title=\"CasinoZonderRegistratie.net - Nederlandse Top Casino's\" href=\"https://casinoZonderregistratie.net/\" rel=\"nofollow\"><img alt=\"CasinoZonderRegistratie.net - Nederlandse Top Casino's\" src=\"https://camo.githubusercontent.com/027122496df5dbf2e91ba406e5fef27d2dcdbf89ef78623e82f1b819b986f80e/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f61656236323463302d376165372d313165642d386430652d6264613539343336363935612e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/aeb624c0-7ae7-11ed-8d0e-bda59436695a.png\" style=\"max-width: 100%;\"></a>\n<a title=\"OnlineCasinoProfy is your guide to the world of gambling.\" href=\"https://polskiekasynaonline24.com/\" rel=\"nofollow\"><img alt=\"OnlineCasinoProfy is your guide to the world of gambling.\" src=\"https://camo.githubusercontent.com/b9c4c1c89bf956dbbd026492ed7f92ccd3b5eab6615047c2927bc37d427fa707/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f66386230663664652d366162352d343836302d393638382d3730396665303338373364332f3225323031253230253238322532392e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/f8b0f6de-6ab5-4860-9688-709fe03873d3/2%201%20%282%29.png\" style=\"max-width: 100%;\"></a>\n<a title=\"Ilmaiset Pitkävetovihjeet \" href=\"https://www.vedonlyontibonukset.com/pitkavetovihjeet\" rel=\"nofollow\"><img alt=\"Ilmaiset Pitkävetovihjeet \" src=\"https://camo.githubusercontent.com/c0a1fa99e3717f29f8ee13fc78621bbf5986a163a72f01a3a9df95793b1e0ee6/68747470733a2f2f6c6f676f2e636c6561726269742e636f6d2f7665646f6e6c796f6e7469626f6e756b7365742e636f6d\" height=\"120\" width=\"120\" data-canonical-src=\"https://logo.clearbit.com/vedonlyontibonukset.com\" style=\"max-width: 100%;\"></a>\n<a title=\"Famoid is a digital marketing agency that specializes in social media services and tools.\" href=\"https://famoid.com/\" rel=\"nofollow\"><img alt=\"Famoid is a digital marketing agency that specializes in social media services and tools.\" src=\"https://camo.githubusercontent.com/84fbd3d7d682f6ebb6db685610989599d34e7c69836a9cb4543a98b01ec99832/68747470733a2f2f6c6f676f2e636c6561726269742e636f6d2f66616d6f69642e636f6d\" height=\"120\" width=\"120\" data-canonical-src=\"https://logo.clearbit.com/famoid.com\" style=\"max-width: 100%;\"></a>\n<a title=\"LookSlots\" href=\"https://www.outlookindia.com/outlook-spotlight/slots-not-on-gamstop-new-non-gamstop-casinos-uk-news-284058\" rel=\"nofollow\"><img alt=\"LookSlots\" src=\"https://camo.githubusercontent.com/719fc27d78266d36095f2fc21528918050596ba4fda67a66339685190249989c/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f64346331363630312d663138332d343233392d396466362d6562326164653761333666332f736c6f74732532306e6f742532306f6e25323067616d73746f702532302d2532306e6f6e25323067616d73746f70253230636173696e6f732e6a7067\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/d4c16601-f183-4239-9df6-eb2ade7a36f3/slots%20not%20on%20gamstop%20-%20non%20gamstop%20casinos.jpg\" style=\"max-width: 100%;\"></a>\n<a title=\"Gives a fun for our users\" href=\"https://slotoking.ua/games/all-slots/\" rel=\"nofollow\"><img alt=\"Gives a fun for our users\" src=\"https://camo.githubusercontent.com/41ba5801dfb265b4e7653a917aba5786f6ca5b2393144846d77cdc3f28b15a0a/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f39343630316430372d333230352d346336302d396332642d3962383139346462656662372f736b672d626c75652e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/94601d07-3205-4c60-9c2d-9b8194dbefb7/skg-blue.png\" style=\"max-width: 100%;\"></a>\n<a title=\"We are the leading Nearshore Technology Solutions company. We architect and engineer scalable and high-performing software solutions.\" href=\"https://www.bairesdev.com/sponsoring-open-source-projects/\" rel=\"nofollow\"><img alt=\"We are the leading Nearshore Technology Solutions company. We architect and engineer scalable and high-performing software solutions.\" src=\"https://camo.githubusercontent.com/a9a41c3838443652482082f3715ac4d9e09412cf71ba3457530cbf1bb0f44ae6/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f64633338626333622d373433302d346366372d396237372d3336343637656239323931352f6c6f676f382e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/dc38bc3b-7430-4cf7-9b77-36467eb92915/logo8.png\" style=\"max-width: 100%;\"></a>\n<a title=\"Buy real Instagram followers from Twicsy starting at only $2.97. Twicsy has been voted the best site to buy followers from the likes of US Magazine.\" href=\"https://twicsy.com/buy-instagram-followers\" rel=\"nofollow\"><img alt=\"Buy real Instagram followers from Twicsy starting at only $2.97. Twicsy has been voted the best site to buy followers from the likes of US Magazine.\" src=\"https://camo.githubusercontent.com/3679020ae53561287c32beca445fe3cdbbec136ff380d4dfa870884b9f1d5d46/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f65623332323863622d393831302d343262302d393735382d3261376161643536333365662f53637265656e25323053686f74253230323032332d30372d30362532306174253230392e30382e3534253230504d2e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/eb3228cb-9810-42b0-9758-2a7aad5633ef/Screen%20Shot%202023-07-06%20at%209.08.54%20PM.png\" style=\"max-width: 100%;\"></a>\n<a title=\"SocialWick offers the best Instagram Followers in the market. If you are looking to boost your organic growth, buy Instagram followers from SocialWick\" href=\"https://www.socialwick.com/instagram/followers\" rel=\"nofollow\"><img alt=\"SocialWick offers the best Instagram Followers in the market. If you are looking to boost your organic growth, buy Instagram followers from SocialWick\" src=\"https://camo.githubusercontent.com/7df75b4aa20a26e17b25af7978e605f8e457415d4b636ff3ae1b49fc7a5860a1/68747470733a2f2f6c6f676f2e636c6561726269742e636f6d2f736f6369616c7769636b2e636f6d\" height=\"120\" width=\"120\" data-canonical-src=\"https://logo.clearbit.com/socialwick.com\" style=\"max-width: 100%;\"></a>\n<a title=\"Online United States Casinos\" href=\"https://www.onlineunitedstatescasinos.com/\" rel=\"nofollow\"><img alt=\"Online United States Casinos\" src=\"https://camo.githubusercontent.com/ffc37458c09ebb44604813107f1d8a54f184577f061de10f277ee1d6ea6c9917/68747470733a2f2f6c6f676f2e636c6561726269742e636f6d2f6f6e6c696e65756e69746564737461746573636173696e6f732e636f6d\" height=\"120\" width=\"120\" data-canonical-src=\"https://logo.clearbit.com/onlineunitedstatescasinos.com\" style=\"max-width: 100%;\"></a>\n<a title=\"Aviators\" href=\"https://aviators.com.br\" rel=\"nofollow\"><img alt=\"Aviators\" src=\"https://camo.githubusercontent.com/d25f67cc4841f013a02bb13272afaca9087ed2f8eead849d18f68fcb87589b1e/68747470733a2f2f6769746875622d70726f64756374696f6e2d757365722d61737365742d3632313064662e73332e616d617a6f6e6177732e636f6d2f31333730302f3237373631363732362d33336235353463382d323465302d343537302d623865642d3239336662326162323434382e6a7067\" height=\"120\" width=\"120\" data-canonical-src=\"https://github-production-user-asset-6210df.s3.amazonaws.com/13700/277616726-33b554c8-24e0-4570-b8ed-293fb2ab2448.jpg\" style=\"max-width: 100%;\"></a>\n<a title=\"Online iGaming platform with reliable and trusted reviews.\" href=\"https://onlinecasinohex.ph/\" rel=\"nofollow\"><img alt=\"Online iGaming platform with reliable and trusted reviews.\" src=\"https://camo.githubusercontent.com/7534c970f49f43d4fbcf466b2ef2ef7200ab24aecaa74bce0b5ab92d465e650d/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f62313963626631302d336135652d313165642d393731332d6337633766633562656461382e737667\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/b19cbf10-3a5e-11ed-9713-c7c7fc5beda8.svg\" style=\"max-width: 100%;\"></a>\n<a title=\"Online Casinos Australia\" href=\"https://online-casinosaustralia.com/\" rel=\"nofollow\"><img alt=\"Online Casinos Australia\" src=\"https://camo.githubusercontent.com/d3ef5def4290d9602cbe656305992ecebdc1a090438ebc108bc8091780aee53e/68747470733a2f2f6769746875622d70726f64756374696f6e2d757365722d61737365742d3632313064662e73332e616d617a6f6e6177732e636f6d2f31333730302f3236383533313538352d63326234653438322d303430392d343636342d396161322d3935613632623064363036642e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://github-production-user-asset-6210df.s3.amazonaws.com/13700/268531585-c2b4e482-0409-4664-9aa2-95a62b0d606d.png\" style=\"max-width: 100%;\"></a>\n<a title=\"Looking to boost your YouTube channel? Buy YouTube subscribers with Views4You and watch your audience grow!\" href=\"https://views4you.com/buy-youtube-subscribers/\" rel=\"nofollow\"><img alt=\"Looking to boost your YouTube channel? Buy YouTube subscribers with Views4You and watch your audience grow!\" src=\"https://camo.githubusercontent.com/9a82da41438a6f32c331a798af68b87b03457519497e85a19fea7ff8262c8070/68747470733a2f2f6c6f676f2e636c6561726269742e636f6d2f766965777334796f752e636f6d\" height=\"120\" width=\"120\" data-canonical-src=\"https://logo.clearbit.com/views4you.com\" style=\"max-width: 100%;\"></a>\n<a title=\"Buy Telegram Members\" href=\"https://buycheapestfollowers.com/buy-telegram-channel-members\" rel=\"nofollow\"><img alt=\"Buy Telegram Members\" src=\"https://camo.githubusercontent.com/8b8f9cf78bf1c7d13120030a672c78dae2492f6936983f2fa8e2e94cd4e44e90/68747470733a2f2f6769746875622d70726f64756374696f6e2d757365722d61737365742d3632313064662e73332e616d617a6f6e6177732e636f6d2f31333730302f3238363639363137322d37343764636130352d613165382d346439332d613965392d3935303534643135363664662e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://github-production-user-asset-6210df.s3.amazonaws.com/13700/286696172-747dca05-a1e8-4d93-a9e9-95054d1566df.png\" style=\"max-width: 100%;\"></a>\n<a title=\"We review the entire iGaming industry from A to Z\" href=\"https://casinolandia.com\" rel=\"nofollow\"><img alt=\"We review the entire iGaming industry from A to Z\" src=\"https://camo.githubusercontent.com/e7a3f90f4c35a3b11f38f8ed96eb07719f89fcd6e6291ef356d5bba463b8552a/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f35663835386164642d373766312d343761322d623537372d3339656563623239396338632f4c6f676f3236342e6a7067\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/5f858add-77f1-47a2-b577-39eecb299c8c/Logo264.jpg\" style=\"max-width: 100%;\"></a>\n<a title=\"free spins no deposit\" href=\"https://www.slotozilla.com/au/free-spins\" rel=\"nofollow\"><img alt=\"free spins no deposit\" src=\"https://camo.githubusercontent.com/e4a4489c6d4cc30a102f9a4a65bc78f7c6efca616c13f9897317eb1a1477ecce/68747470733a2f2f6769746875622d70726f64756374696f6e2d757365722d61737365742d3632313064662e73332e616d617a6f6e6177732e636f6d2f31333730302f3238363639333935332d63363831313262362d656265362d343966642d616636612d3563383130613534393038642e6a7067\" height=\"120\" width=\"120\" data-canonical-src=\"https://github-production-user-asset-6210df.s3.amazonaws.com/13700/286693953-c68112b6-ebe6-49fd-af6a-5c810a54908d.jpg\" style=\"max-width: 100%;\"></a>\n<a title=\"aussiecasinoreviewer.com\" href=\"https://aussiecasinoreviewer.com/\" rel=\"nofollow\"><img alt=\"aussiecasinoreviewer.com\" src=\"https://camo.githubusercontent.com/3ec149d7cdc42ac632e974ff4a9f0cc2b8f876325e10919a2cfe4b524bb77a5d/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f36666662353034352d653333652d343331342d613839312d3532383666613461323230662f417573736965636173696e6f72657669657765722532306c6f676f2532302832292532302832292e6a7067\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/6ffb5045-e33e-4314-a891-5286fa4a220f/Aussiecasinoreviewer%20logo%20(2)%20(2).jpg\" style=\"max-width: 100%;\"></a>\n<a title=\"MEGAFAMOUS.com\" href=\"https://megafamous.com/buy-automatic-instagram-likes\" rel=\"nofollow\"><img alt=\"MEGAFAMOUS.com\" src=\"https://camo.githubusercontent.com/04cdb90f0f4c8eb1d0ece6473b5ee17d2d0c9daa2e601048a89f669ef1316287/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f63306166386135642d386665372d343932352d623335372d6365653739373834313931332f4d45474146414d4f5553253230496e7374616772616d2532304c696b65732532302e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/c0af8a5d-8fe7-4925-b357-cee797841913/MEGAFAMOUS%20Instagram%20Likes%20.png\" style=\"max-width: 100%;\"></a>\n<a title=\"PopularityBazaar helps you quickly grow your social media accounts. Buy 100% real likes, followers, views, comments, and more to kickstart your online presence.\" href=\"https://popularitybazaar.com/instagram-likes/\" rel=\"nofollow\"><img alt=\"PopularityBazaar helps you quickly grow your social media accounts. Buy 100% real likes, followers, views, comments, and more to kickstart your online presence.\" src=\"https://camo.githubusercontent.com/6f7ee2c3825b673c0e7a3b7d2ca190580b6452fb177f22f6988637432501161c/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f61323837386532362d333731302d343533662d396134312d3830656565653630613263632f47726f7570253230312e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/a2878e26-3710-453f-9a41-80eeee60a2cc/Group%201.png\" style=\"max-width: 100%;\"></a>\n<a title=\"Non-GamStop NonStop Casino\" href=\"https://uk.nonstopcasino.org/non-gamstop-casinos/\" rel=\"nofollow\"><img alt=\"Non-GamStop NonStop Casino\" src=\"https://camo.githubusercontent.com/e4bf1afc0a0937bb2b30d8054ae90a0d95fd255b4864bbc9dec59b4af9310ee7/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f30333330633033612d373165612d343737632d613464382d3765623437393564363132302f6e6f6e2d73746f702d636173696e6f2e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/0330c03a-71ea-477c-a4d8-7eb4795d6120/non-stop-casino.png\" style=\"max-width: 100%;\"></a>\n<a title=\"philippinescasinos.ph\" href=\"https://philippinescasinos.ph/gcash/\" rel=\"nofollow\"><img alt=\"philippinescasinos.ph\" src=\"https://camo.githubusercontent.com/659c266e1f1a0d02e7d98106f0c262729deff7237e9bea802ae684665fc36258/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f62373538663162302d333231312d343634622d613139652d3935653261356634666132322f5068696c697070696e6573436173696e6f732532306269676765722e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/b758f1b0-3211-464b-a19e-95e2a5f4fa22/PhilippinesCasinos%20bigger.png\" style=\"max-width: 100%;\"></a>\n<a title=\"Incognito\" href=\"https://www.outlookindia.com/outlook-spotlight/casinos-not-on-gamstop-uk-news-302214\" rel=\"nofollow\"><img alt=\"Incognito\" src=\"https://camo.githubusercontent.com/00a9299be5f2af0492ccefc7906b6ac3ca1c04eded1e146a0e6b53cd788e60c4/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f66646635383463322d646566652d343032352d616232362d3135653563356666363037652f4e6f6e25323067616d73746f70253230636173696e6f2532304f75746c6f6f6b696e6469612e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/fdf584c2-defe-4025-ab26-15e5c5ff607e/Non%20gamstop%20casino%20Outlookindia.png\" style=\"max-width: 100%;\"></a>\n<a title=\"NonGamStopBets Casinos not on GamStop\" href=\"https://www.nongamstopbets.com/casinos-not-on-gamstop/\" rel=\"nofollow\"><img alt=\"NonGamStopBets Casinos not on GamStop\" src=\"https://camo.githubusercontent.com/e2944889c10db9297fc74b9d85cd56a05089bc3dc8622cc55f1e10d7536a2fca/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f36633232363031642d366133662d343337302d393164642d6139373937383837333732612f6e6f6e67616d73746f70626574732e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/6c22601d-6a3f-4370-91dd-a9797887372a/nongamstopbets.png\" style=\"max-width: 100%;\"></a>\n<a title=\"Buy real Instagram followers from Stormlikes starting at only $2.97. Stormlikes has been voted the best site to buy followers from the likes of US Magazine.\" href=\"https://www.stormlikes.net/buy-instagram-followers\" rel=\"nofollow\"><img alt=\"Buy real Instagram followers from Stormlikes starting at only $2.97. Stormlikes has been voted the best site to buy followers from the likes of US Magazine.\" src=\"https://camo.githubusercontent.com/ebb1184c10205ef1e168f5c3a5b5de60416bc642806b64ec63862f5e356dcf37/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f30373532346334642d643434662d343132302d383639332d3330666361613739356232622f53746f726d6c696b6573253230426c61636b2532304c6f676f2532303234303078313830302e6a7067\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/07524c4d-d44f-4120-8693-30fcaa795b2b/Stormlikes%20Black%20Logo%202400x1800.jpg\" style=\"max-width: 100%;\"></a>\n<a title=\"UpGrow is the Best Instagram Growth Service in 2024. Get more real Instagram followers with our AI-powered growth engine to get 10x faster results. \" href=\"https://www.upgrow.com/\" rel=\"nofollow\"><img alt=\"UpGrow is the Best Instagram Growth Service in 2024. Get more real Instagram followers with our AI-powered growth engine to get 10x faster results. \" src=\"https://camo.githubusercontent.com/952f4e6981cc6852b984ae52bca1484568dcdf74fc2c0400c57cd97e3ad96f87/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f36336162373236382d356365342d346536312d623966312d3933613162643839636433652f6d732d69636f6e2d333130783331302e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/63ab7268-5ce4-4e61-b9f1-93a1bd89cd3e/ms-icon-310x310.png\" style=\"max-width: 100%;\"></a>\n<a title=\"Analysis of payment methods for use in the iGaming\" href=\"https://payidpokies.net/\" rel=\"nofollow\"><img alt=\"Analysis of payment methods for use in the iGaming\" src=\"https://camo.githubusercontent.com/0e2ec39d2c16826ae6a0bb78767a1ee76621c4ce056a59fc372bb9feccc5bd33/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f37356234653833652d616536612d346536352d623261612d6136376437646165633737352f5061794944506f6b6965732d636f6d2e77656270\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/75b4e83e-ae6a-4e65-b2aa-a67d7daec775/PayIDPokies-com.webp\" style=\"max-width: 100%;\"></a>\n<a title=\"30 Best Casinos Not on Gamstop in 2024\" href=\"https://finance.yahoo.com/news/30-best-casinos-not-gamstop-091943696.html\" rel=\"nofollow\"><img alt=\"30 Best Casinos Not on Gamstop in 2024\" src=\"https://private-user-images.githubusercontent.com/13700/298033864-820935c0-7844-4ba9-9563-b1c559895c38.jpg?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MjIwNjQyNTEsIm5iZiI6MTcyMjA2Mzk1MSwicGF0aCI6Ii8xMzcwMC8yOTgwMzM4NjQtODIwOTM1YzAtNzg0NC00YmE5LTk1NjMtYjFjNTU5ODk1YzM4LmpwZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNDA3MjclMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjQwNzI3VDA3MDU1MVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTgyZjU2MTk5ZjA0M2FiNDZjYTdhNjQzZDk3Y2MxMDBjMDhmYWZkZmI2YjY4NTE0ODlkOWJhYTM1YWFjODYyNmYmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JmFjdG9yX2lkPTAma2V5X2lkPTAmcmVwb19pZD0wIn0.fsUyo45IdAW-lvq4OVjlTu0nz6v2Fhv0TxrySyrJHg8\" height=\"120\" width=\"120\" secured-asset-link=\"\" style=\"max-width: 100%;\"></a>\n<a title=\"No deposit casino promo Codes 2024 - The best online Casinos websites. No deposit bonus codes, Free Spins and Promo Codes. Stake, Roobet, Jackpotcity and more.\" href=\"https://www.ownedcore.com/casino\" rel=\"nofollow\"><img alt=\"No deposit casino promo Codes 2024 - The best online Casinos websites. No deposit bonus codes, Free Spins and Promo Codes. Stake, Roobet, Jackpotcity and more.\" src=\"https://camo.githubusercontent.com/bf6bce6aeef3ad37ddd91f835b5d1a825c7b341c7330a78bf948d6273c4ba7c3/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f38626434623738632d393565322d346334312d623466342d6437666436633065313263642f6c6f676f342d65363134306332372e77656270\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/8bd4b78c-95e2-4c41-b4f4-d7fd6c0e12cd/logo4-e6140c27.webp\" style=\"max-width: 100%;\"></a>\n<a title=\"Online casino.\" href=\"https://www.fruityking.co.nz\" rel=\"nofollow\"><img alt=\"Online casino.\" src=\"https://camo.githubusercontent.com/dbefa3de02649222b6314f2002b467eab4d97c74df86021ffb2a4788fdb4a1b6/68747470733a2f2f6c6f676f2e636c6561726269742e636f6d2f6672756974796b696e672e636f2e6e7a\" height=\"120\" width=\"120\" data-canonical-src=\"https://logo.clearbit.com/fruityking.co.nz\" style=\"max-width: 100%;\"></a>\n<a title=\"Listing no deposit bonus offers from various internet sites .\" href=\"https://www.nodepositcasinobonus.org/\" rel=\"nofollow\"><img alt=\"Listing no deposit bonus offers from various internet sites .\" src=\"https://camo.githubusercontent.com/9cfd46d0240c1e0cf1b1365326fabb5e0f47227ad6214614f4b0e50fa23bf967/68747470733a2f2f6c6f676f2e636c6561726269742e636f6d2f6e6f6465706f736974636173696e6f626f6e75732e6f7267\" height=\"120\" width=\"120\" data-canonical-src=\"https://logo.clearbit.com/nodepositcasinobonus.org\" style=\"max-width: 100%;\"></a>\n<a title=\"Fortune Tiger\" href=\"https://fortune-tiger-br.com/\" rel=\"nofollow\"><img alt=\"Fortune Tiger\" src=\"https://camo.githubusercontent.com/e44d5b5acf90fea4eb943e6ad09664da8117231b955ff7fb5f051bb4fd6927b4/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f38383930346634612d663939372d343965382d386664342d3530363861636338356139382f666f7274756e652d74696765722d736c6f742d3238312d696d672d322e77656270\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/88904f4a-f997-49e8-8fd4-5068acc85a98/fortune-tiger-slot-281-img-2.webp\" style=\"max-width: 100%;\"></a>\n<a title=\"Parimatch\" href=\"https://parimattchbr.com/\" rel=\"nofollow\"><img alt=\"Parimatch\" src=\"https://camo.githubusercontent.com/7be30fbcb3d96cdaf7893b2e75124b4f35ce4cfd88c19f8bdc5e73f7bd5a2de7/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f64336437346464352d343961332d343330362d623939652d3734343562373861343234332f706172696d617463685f2d5f6865726f5f2d5f77686974652e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/d3d74dd5-49a3-4306-b99e-7445b78a4243/parimatch_-_hero_-_white.png\" style=\"max-width: 100%;\"></a>\n<a title=\"ExpressFollowers\" href=\"https://expressfollowers.com/buy-instagram-reel-views/\" rel=\"nofollow\"><img alt=\"ExpressFollowers\" src=\"https://camo.githubusercontent.com/8a4f964f39c4f337a2f5094fb69007d7feed70f7117db50109dfcb9ddd1cce6a/68747470733a2f2f6c6f676f2e636c6561726269742e636f6d2f65787072657373666f6c6c6f776572732e636f6d\" height=\"120\" width=\"120\" data-canonical-src=\"https://logo.clearbit.com/expressfollowers.com\" style=\"max-width: 100%;\"></a>\n<a title=\"SidesMedia\" href=\"https://sidesmedia.com\" rel=\"nofollow\"><img alt=\"SidesMedia\" src=\"https://camo.githubusercontent.com/6154a61bf18a4ca7ea4c6e1a5a83bab9901a28928e7b1793111ef1f726d52648/68747470733a2f2f6c6f676f2e636c6561726269742e636f6d2f73696465736d656469612e636f6d\" height=\"120\" width=\"120\" data-canonical-src=\"https://logo.clearbit.com/sidesmedia.com\" style=\"max-width: 100%;\"></a>\n<a title=\"BuitenlandseOnlineCasinos\" href=\"https://buitenlandseonlinecasinos.org/\" rel=\"nofollow\"><img alt=\"BuitenlandseOnlineCasinos\" src=\"https://camo.githubusercontent.com/05b585144d19a2bc8eb8118ae8afe2af38f7bb9b46e6200a532b46d35d8795ef/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f31653561653930622d376165652d343432332d623632632d3665353065346333343261372f42554954454e4c414e4453452d6c6f676f2d65646974312e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/1e5ae90b-7aee-4423-b62c-6e50e4c342a7/BUITENLANDSE-logo-edit1.png\" style=\"max-width: 100%;\"></a>\n<a title=\"Find the social proof you need to reach your audience! Boost conversions. Quickly buy Twitter Followers &amp; more with no sign-up. Taking you to the next\" href=\"https://Bulkoid.com/buy-twitter-followers\" rel=\"nofollow\"><img alt=\"Find the social proof you need to reach your audience! Boost conversions. Quickly buy Twitter Followers &amp; more with no sign-up. Taking you to the next\" src=\"https://camo.githubusercontent.com/6528339d6ab3f2467296d93937ab1588bc9ace51595ae00efdef5d38b1892cec/68747470733a2f2f6c6f676f2e636c6561726269742e636f6d2f42756c6b6f69642e636f6d\" height=\"120\" width=\"120\" data-canonical-src=\"https://logo.clearbit.com/Bulkoid.com\" style=\"max-width: 100%;\"></a>\n<a title=\"Buy Instagram Followers, Likes, Views &amp; Comments\" href=\"https://viralyft.com/buy-instagram-followers\" rel=\"nofollow\"><img alt=\"Buy Instagram Followers, Likes, Views &amp; Comments\" src=\"https://camo.githubusercontent.com/fd2b13d9a8b1140cca635bd4fdf9f46332d2ac038ddf0ee4e90bad3d5a2de2a3/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f39383165363232612d376436372d343131372d383666312d6634623861626536346631332f566972616c7966742e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/981e622a-7d67-4117-86f1-f4b8abe64f13/Viralyft.png\" style=\"max-width: 100%;\"></a>\n<a title=\"At Graming, we offer top-notch quality TikTok views at the best prices! Check out our deals below and order now!\" href=\"https://graming.com/buy-tiktok-views/\" rel=\"nofollow\"><img alt=\"At Graming, we offer top-notch quality TikTok views at the best prices! Check out our deals below and order now!\" src=\"https://camo.githubusercontent.com/23ec0903865fa98228e490c3249312ba209e286f077227bcb9d586ea88fe8089/68747470733a2f2f6c6f676f2e636c6561726269742e636f6d2f6772616d696e672e636f6d\" height=\"120\" width=\"120\" data-canonical-src=\"https://logo.clearbit.com/graming.com\" style=\"max-width: 100%;\"></a>\n<a title=\"Insfollowpro sells Instagram followers, likes, views.\" href=\"https://insfollowpro.com\" rel=\"nofollow\"><img alt=\"Insfollowpro sells Instagram followers, likes, views.\" src=\"https://camo.githubusercontent.com/7ed44b2779b674ab72cc154e4bdcdc883c224aa7f1241b52a930baee0ba32d2f/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f30363239313161632d613030342d346163382d393365622d3635396638653463343365322f696e73666f6c6c6f7770726f5f49636f6e2532302831292e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/062911ac-a004-4ac8-93eb-659f8e4c43e2/insfollowpro_Icon%20(1).png\" style=\"max-width: 100%;\"></a>\n<a title=\"top 6 online real money casino Canada\" href=\"https://casinoonlineca.ca/real-money/\" rel=\"nofollow\"><img alt=\"top 6 online real money casino Canada\" src=\"https://camo.githubusercontent.com/07c83a7ead0cd5a2af1e1bf3dd0c39d088c52d6fb2a97cdec43c31bb47cf3f87/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f37663038363362622d366331352d343935302d383634392d6231376430393335313138362f696d6167652532302839292d322e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/7f0863bb-6c15-4950-8649-b17d09351186/image%20(9)-2.png\" style=\"max-width: 100%;\"></a>\n<a title=\"Boost your social media presence effortlessly with top-quality Instagram and TikTok followers and likes.\" href=\"https://leofame.com/buy-instagram-followers\" rel=\"nofollow\"><img alt=\"Boost your social media presence effortlessly with top-quality Instagram and TikTok followers and likes.\" src=\"https://camo.githubusercontent.com/713c5cbd551a46b2abc6535990703727b6565950fe891229133d094d4bef8816/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f31383663306531392d623139352d343232382d393031612d6162316237306436336565352f5768617473417070253230496d616765253230323032342d30362d32312532306174253230332e35302e3433253230414d2e6a7067\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/186c0e19-b195-4228-901a-ab1b70d63ee5/WhatsApp%20Image%202024-06-21%20at%203.50.43%20AM.jpg\" style=\"max-width: 100%;\"></a>\n<a title=\"Porównanie kasyn online w Polsce. Darmowe automaty online.\" href=\"https://onlinekasyno-polis.pl/\" rel=\"nofollow\"><img alt=\"Porównanie kasyn online w Polsce. Darmowe automaty online.\" src=\"https://camo.githubusercontent.com/60190f769befccd5bd12fa45fe7c783535e1cf2e133e1d84b400a3ca9a65e8e6/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f31326665353364342d623265342d343630312d623965612d3762363532633431346133382f323734707825323032373470782d322e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/12fe53d4-b2e4-4601-b9ea-7b652c414a38/274px%20274px-2.png\" style=\"max-width: 100%;\"></a>\n<a title=\"https://buyyoutubviews.com\" href=\"https://buyyoutubviews.com\" rel=\"nofollow\"><img alt=\"https://buyyoutubviews.com\" src=\"https://camo.githubusercontent.com/3e6fd785b5430d115b21f754d2abc6f20477b96cbab21a607f686d90612d4a9f/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f61616635316165302d386430622d313165642d626332662d3733396264393563653634372e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/aaf51ae0-8d0b-11ed-bc2f-739bd95ce647.png\" style=\"max-width: 100%;\"></a>\n<a title=\"Сasinorevisor.com\" href=\"https://casinorevisor.com/\" rel=\"nofollow\"><img alt=\"Сasinorevisor.com\" src=\"https://camo.githubusercontent.com/1c0ab7a0c48706d04c55900f1f8b0cad423f2134e7cc861581afba4fba77fa89/68747470733a2f2f6f70656e636f6c6c6563746976652d70726f64756374696f6e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6163636f756e742d6176617461722f61363965313738392d396632662d346232342d386238352d6331643466636563646532662f323030783230305f77686974655f6267253230312e706e67\" height=\"120\" width=\"120\" data-canonical-src=\"https://opencollective-production.s3.us-west-1.amazonaws.com/account-avatar/a69e1789-9f2f-4b24-8b85-c1d4fcecde2f/200x200_white_bg%201.png\" style=\"max-width: 100%;\"></a>\n</div>\n<p dir=\"auto\">Please note that links to the sponsors above are not direct endorsements nor affiliated with any of contributors of the nodemon project.</p>\n<div class=\"markdown-heading\" dir=\"auto\"><h1 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\">License</h1><a id=\"user-content-license\" class=\"anchor\" aria-label=\"Permalink: License\" href=\"#license\"><svg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"><path d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"></path></svg></a></div>\n<p dir=\"auto\">MIT <a href=\"http://rem.mit-license.org\" rel=\"nofollow\">http://rem.mit-license.org</a></p>\n</article>",
"loaded": true,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": [
{
"level": 1,
"text": "nodemon",
"anchor": "nodemon",
"htmlText": "nodemon"
},
{
"level": 1,
"text": "Installation",
"anchor": "installation",
"htmlText": "Installation"
},
{
"level": 1,
"text": "Usage",
"anchor": "usage",
"htmlText": "Usage"
},
{
"level": 2,
"text": "Automatic re-running",
"anchor": "automatic-re-running",
"htmlText": "Automatic re-running"
},
{
"level": 2,
"text": "Manual restarting",
"anchor": "manual-restarting",
"htmlText": "Manual restarting"
},
{
"level": 2,
"text": "Config files",
"anchor": "config-files",
"htmlText": "Config files"
},
{
"level": 3,
"text": "package.json",
"anchor": "packagejson",
"htmlText": "package.json"
},
{
"level": 2,
"text": "Using nodemon as a module",
"anchor": "using-nodemon-as-a-module",
"htmlText": "Using nodemon as a module"
},
{
"level": 2,
"text": "Using nodemon as child process",
"anchor": "using-nodemon-as-child-process",
"htmlText": "Using nodemon as child process"
},
{
"level": 2,
"text": "Running non-node scripts",
"anchor": "running-non-node-scripts",
"htmlText": "Running non-node scripts"
},
{
"level": 3,
"text": "Default executables",
"anchor": "default-executables",
"htmlText": "Default executables"
},
{
"level": 2,
"text": "Monitoring multiple directories",
"anchor": "monitoring-multiple-directories",
"htmlText": "Monitoring multiple directories"
},
{
"level": 2,
"text": "Specifying extension watch list",
"anchor": "specifying-extension-watch-list",
"htmlText": "Specifying extension watch list"
},
{
"level": 2,
"text": "Ignoring files",
"anchor": "ignoring-files",
"htmlText": "Ignoring files"
},
{
"level": 2,
"text": "Application isn't restarting",
"anchor": "application-isnt-restarting",
"htmlText": "Application isn't restarting"
},
{
"level": 2,
"text": "Delaying restarting",
"anchor": "delaying-restarting",
"htmlText": "Delaying restarting"
},
{
"level": 2,
"text": "Gracefully reloading down your script",
"anchor": "gracefully-reloading-down-your-script",
"htmlText": "Gracefully reloading down your script"
},
{
"level": 2,
"text": "Controlling shutdown of your script",
"anchor": "controlling-shutdown-of-your-script",
"htmlText": "Controlling shutdown of your script"
},
{
"level": 2,
"text": "Triggering events when nodemon state changes",
"anchor": "triggering-events-when-nodemon-state-changes",
"htmlText": "Triggering events when nodemon state changes"
},
{
"level": 2,
"text": "Pipe output to somewhere else",
"anchor": "pipe-output-to-somewhere-else",
"htmlText": "Pipe output to somewhere else"
},
{
"level": 2,
"text": "Using nodemon in your gulp workflow",
"anchor": "using-nodemon-in-your-gulp-workflow",
"htmlText": "Using nodemon in your gulp workflow"
},
{
"level": 2,
"text": "Using nodemon in your Grunt workflow",
"anchor": "using-nodemon-in-your-grunt-workflow",
"htmlText": "Using nodemon in your Grunt workflow"
},
{
"level": 2,
"text": "Pronunciation",
"anchor": "pronunciation",
"htmlText": "Pronunciation"
},
{
"level": 2,
"text": "Design principles",
"anchor": "design-principles",
"htmlText": "Design principles"
},
{
"level": 2,
"text": "FAQ",
"anchor": "faq",
"htmlText": "FAQ"
},
{
"level": 2,
"text": "Backers",
"anchor": "backers",
"htmlText": "Backers"
},
{
"level": 2,
"text": "Sponsors",
"anchor": "sponsors",
"htmlText": "Sponsors"
},
{
"level": 1,
"text": "License",
"anchor": "license",
"htmlText": "License"
}
],
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Fremy%2Fnodemon"
}
},
{
"displayName": "CODE_OF_CONDUCT.md",
"repoName": "nodemon",
"refName": "main",
"path": "CODE_OF_CONDUCT.md",
"preferredFileType": "code_of_conduct",
"tabName": "Code of conduct",
"richText": null,
"loaded": false,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": null,
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Fremy%2Fnodemon"
}
},
{
"displayName": "LICENSE",
"repoName": "nodemon",
"refName": "main",
"path": "LICENSE",
"preferredFileType": "license",
"tabName": "MIT",
"richText": null,
"loaded": false,
"timedOut": false,
"errorMessage": null,
"headerInfo": {
"toc": null,
"siteNavLoginPath": "/login?return_to=https%3A%2F%2Fgithub.com%2Fremy%2Fnodemon"
}
}
],
"overviewFilesProcessingTime": 0
}
},
"appPayload": {
"helpUrl": "https://docs.github.com",
"findFileWorkerPath": "/assets-cdn/worker/find-file-worker-1583894afd38.js",
"findInFileWorkerPath": "/assets-cdn/worker/find-in-file-worker-3a63a487027b.js",
"githubDevUrl": null,
"enabled_features": {
"code_nav_ui_events": false,
"overview_shared_code_dropdown_button": false,
"react_blob_overlay": false,
"copilot_conversational_ux_embedding_update": false,
"copilot_smell_icebreaker_ux": true,
"copilot_workspace": false
}
}
}
}
{
"accept-ranges": "bytes",
"cache-control": "max-age=0, private, must-revalidate",
"content-encoding": "gzip",
"content-security-policy": "default-src 'none'; base-uri 'self'; child-src github.com/assets-cdn/worker/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com api.githubcopilot.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com/v1/engines/github-completion/completions proxy.enterprise.githubcopilot.com/v1/engines/github-completion/completions *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.com/assets-cdn/worker/ gist.github.com/assets-cdn/worker/",
"content-type": "text/html; charset=utf-8",
"date": "Sat, 27 Jul 2024 07:05:51 GMT",
"etag": "06f52dd8732afb79aacef61b36bf5b33",
"referrer-policy": "no-referrer-when-downgrade",
"server": "GitHub.com",
"set-cookie": "logged_in=no; Path=/; Domain=github.com; Expires=Sun, 27 Jul 2025 07:05:51 GMT; HttpOnly; Secure; SameSite=Lax",
"strict-transport-security": "max-age=31536000; includeSubdomains; preload",
"transfer-encoding": "chunked",
"vary": "X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, Accept-Encoding, Accept, X-Requested-With",
"x-content-type-options": "nosniff",
"x-frame-options": "deny",
"x-github-request-id": "DF52:2B7859:1116B5F:15ADA6A:66A49C4D",
"x-xss-protection": "0"
}