New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

limitd-client

Package Overview
Dependencies
Maintainers
1
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

limitd-client - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

5

index.js

@@ -14,5 +14,3 @@ var url = require('url');

var encoder = require('pb-stream').encoder;
var ResponseDecoder = decoder(ResponseMessage);
var DEFAULT_PORT = 9231;

@@ -42,4 +40,3 @@ var DEFAULT_HOST = 'localhost';

this.socket = reconnect(function (stream) {
stream.pipe(ResponseDecoder).on('data', function (response) {
stream.pipe(decoder(ResponseMessage)).on('data', function (response) {
client.emit('response', response);

@@ -46,0 +43,0 @@ client.emit('response_' + response.request_id, response);

6

package.json
{
"name": "limitd-client",
"version": "1.0.0",
"version": "1.0.1",
"description": "limitd client for node.js",
"main": "index.js",
"scripts": {
"test": "mocha"
"test": "mocha --timeout 6000"
},

@@ -31,2 +31,2 @@ "author": "José F. Romaniello <jfromaniello@gmail.com> (http://joseoncode.com)",

}
}
}

@@ -16,2 +16,3 @@ [![Build Status](https://travis-ci.org/auth0/limitd.svg)](https://travis-ci.org/limitd/node-client)

```javascript
var LimitdClient = require('limitd-client');
var limitd = new LimitdClient('limitd://localhost:9001');

@@ -18,0 +19,0 @@

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