Socket
Socket
Sign inDemoInstall

nodemon

Package Overview
Dependencies
Maintainers
1
Versions
254
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nodemon - npm Package Compare versions

Comparing version 0.5.5 to 0.5.6

7

nodemon.js

@@ -10,3 +10,3 @@ #!/usr/bin/env node

flag = './.monitor',
nodeArgs = process.ARGV.splice(2), // removes 'node' and this script
nodeArgs = process.argv.splice(2), // removes 'node' and this script
app = nodeArgs[0],

@@ -119,3 +119,6 @@ node = null,

function readIgnoreFile() {
function readIgnoreFile(curr, prev) {
// unless the ignore file was actually modified, do no re-read it
if(curr && prev && curr.mtime.valueOf() === prev.mtime.valueOf()) return;
fs.unwatchFile(ignoreFilePath);

@@ -122,0 +125,0 @@

@@ -12,5 +12,5 @@ {

"keywords": ["monitor", "development", "restart", "autoload", "reload", "terminal"],
"version": "0.5.5",
"version": "0.5.6",
"preferGlobal" : "true",
"main": "./nodemon"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc