Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

autodev

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

autodev - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

17

autodev.js

@@ -73,7 +73,18 @@ var chokidar, http, path, uncache;

}).on("all", (e, filepath) => {
var resetTimeout;
if (busy) {
return;
if (busy !== true) {
uncache(filepath, __filename);
return busy();
}
} else {
uncache(filepath, __filename);
busy = resetTimeout = () => {
if (busy.timeoutObj != null) {
clearTimeout(busy.timeoutObj);
}
return busy.timeoutObj = setTimeout(restart, 300);
};
return busy();
}
uncache(filepath, __filename);
return restart();
});

@@ -80,0 +91,0 @@ } else {

4

package.json
{
"name": "autodev",
"description": "quick auto restart script for dev servers",
"version": "0.1.0",
"version": "0.1.1",
"homepage": "https://github.com/paulpflug/",

@@ -31,3 +31,3 @@ "author": {

"devDependencies": {
"coffeescript": "^2.0.0-alpha1"
"coffeescript": "^2.0.0-beta3"
},

@@ -34,0 +34,0 @@ "keywords": [

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