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

@farar/nodes

Package Overview
Dependencies
Maintainers
0
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@farar/nodes - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

2

dist/config.d.ts

@@ -7,3 +7,5 @@ import EventEmitter from 'node:events';

constructor();
get errorHandler(): ErrorHandler;
set errorHandler(errorHandler: ErrorHandler);
get debug(): boolean;
set debug(debug: boolean);

@@ -10,0 +12,0 @@ }

@@ -15,2 +15,5 @@ "use strict";

}
get errorHandler() {
return this._errorHandler;
}
set errorHandler(errorHandler) {

@@ -20,2 +23,5 @@ this._errorHandler = errorHandler;

}
get debug() {
return this._debug;
}
set debug(debug) {

@@ -22,0 +28,0 @@ this._debug = debug;

2

package.json
{
"name": "@farar/nodes",
"version": "1.0.0",
"version": "1.0.1",
"description": "",

@@ -5,0 +5,0 @@ "main": "./dist/index.js",

@@ -47,3 +47,3 @@ # Nodes

Please see the [Streams Logger](https://github.com/faranalytics/streams-logger) implementation.
Please see the [_Streams_ Logger](https://github.com/faranalytics/streams-logger) implementation.

@@ -54,3 +54,3 @@ ## API

**new Nodes.Node\<InT, OutT\>(stream, options)**
**new nodes.Node\<InT, OutT\>(stream, options)**
- `<IntT>` The input into the stream.

@@ -168,12 +168,7 @@ - `<OutT>` The output from the stream.

### Install dependencies.
```bash
git clone https://github.com/faranalytics/nodes.git
cd nodes
npm install && npm update
```
### Run tests.
```bash
npm test
```
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