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

node-dev

Package Overview
Dependencies
Maintainers
1
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-dev

Restarts your app when files are modified

  • 2.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
71K
decreased by-3.42%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status

node-dev

Node-dev is a development tool for Node.js that automatically restarts the node process when a script is modified.

It's an alternative to tools like supervisor or nodemon that doesn't require any configuration. Just run node-dev foo.js as you would normally run node and it will automatically figure out which files need to be watched.

You may also use node-dev with CoffeeScript or LiveScript apps. Just run node-dev app.coffee or node-dev app.ls. You may also register additional language flavors by adding them to the extensions list in your .node-dev.json config file.

Desktop Notifications

Status and error messages can be displayed as desktop notification using either Growl or libnotify.

Screenshot

Screenshot

Installation

Node-dev can be installed via npm:

npm install -g node-dev

In order to use Growl notifications growlnotify must be installed on your system.

Settings

Upon startup node-dev looks for a .node-dev.json file in the user's HOME directory. It will also look for a .node-dev.json file in the current directory which – if present – overwrites the global settings.

  • vm – Whether to watch files loaded via Node's VM module. Default: true
  • fork – Whether to hook into child_process.fork() which is required for clustered programs. Default: true
  • notify – Whether to display desktop notifications. Default: true
  • timestamp – The timestamp format to use for logging restarts. Default: "HH:MM:ss"
  • clear – Whether to clear the screen upon restarts. Default: false
  • extensions – Modules to load based bad on extension of the main script. Default: { coffee: "coffee-script", ls: "LiveScript" }

Keywords

FAQs

Package last updated on 21 Mar 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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