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

node-dev

Package Overview
Dependencies
Maintainers
4
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-dev - npm Package Compare versions

Comparing version 5.1.0 to 5.2.0

4

CHANGELOG.md
# node-dev
## v5.2.0 / 2020-08-19
- [lib/ipc.js] Do not send unless connected
## v5.1.0 / 2020-07-28

@@ -4,0 +8,0 @@

5

lib/ipc.js
const NODE_DEV = 'NODE_DEV';
/**
* Sends a message to the given process.
*/
exports.send = function (m, dest) {
m.cmd = NODE_DEV;
if (!dest) dest = process;
if (dest.send) dest.send(m);
if (dest.connected) dest.send(m);
};

@@ -11,0 +8,0 @@

{
"name": "node-dev",
"version": "5.1.0",
"version": "5.2.0",
"description": "Restarts your app when files are modified",

@@ -5,0 +5,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