Socket
Socket
Sign inDemoInstall

pm2-axon

Package Overview
Dependencies
5
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.3.0 to 4.0.0

lib/configurable/.npmignore

7

lib/sockets/pub.js

@@ -41,9 +41,6 @@

var len = socks.length;
var sock;
var buf = this.pack(arguments);
for (var i = 0; i < len; i++) {
sock = socks[i];
if (sock.writable) sock.write(buf);
for (var sock of socks) {
if (sock.writable) sock.write(buf);
}

@@ -50,0 +47,0 @@

@@ -7,3 +7,3 @@

var debug = require('debug')('axon:sub');
var escape = require('escape-regexp');
var escape = require('escape-string-regexp');
var Message = require('amp-message');

@@ -10,0 +10,0 @@ var Socket = require('./sock');

{
"name": "pm2-axon",
"description": "High-level messaging & socket patterns implemented in pure js",
"version": "3.3.0",
"version": "4.0.0",
"author": {

@@ -9,7 +9,10 @@ "name": "TJ Holowaychuk",

},
"engines": {
"node": ">=5"
},
"dependencies": {
"debug": "^3.0",
"escape-regexp": "0.0.1",
"amp": "~0.3.1",
"amp-message": "~0.1.1",
"amp": "~0.3.1"
"debug": "^4.2",
"escape-string-regexp": "^4.0.0"
},

@@ -19,5 +22,5 @@ "devDependencies": {

"should": "*",
"mocha": "^3.5",
"mocha": "^8.1",
"commander": "*",
"humanize-number": "0.0.1"
"humanize-number": "0.0.2"
},

@@ -35,3 +38,3 @@ "keywords": [

"type": "git",
"url": "https://github.com/visionmedia/axon.git"
"url": "https://github.com/Unitech/pm2-axon.git"
},

@@ -41,3 +44,7 @@ "scripts": {

},
"license": "MIT"
"license": "MIT",
"files": [
"lib",
"index.js"
]
}
SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc