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

json-diff-patch-stream

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

json-diff-patch-stream

send json diffs and patches with two transform streams

1.0.0
latest
npm
Version published
Maintainers
1
Created
Source

JSON-diff-patch-stream

Two transform streams to send JSON diffs and parse JSON patches

installation

$ npm install --save json-diff-patch-stream

use

const createDiffSource = require('json-diff-patch-stream').createSource
const diffSource = createDiffSource() // Transform stream

process.stdin.pipe(diffSource).pipe(process.stdout)

get approximately this:

$ node myStream.js
{"a":2} # prints { a: [2] }

Keywords

stream

FAQs

Package last updated on 10 Jun 2016

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