minpatch
Reduces JSON patches/RFC 6902
to to be less verbose. Saves you precious bytes.
JSON Patch?
JSON patch is a standard RFC 6902 to describe changes (diffs) in JSON documents.
Implementations:
Why use minpatch?
You'd use this module if you were storing your JSON patches in a database.
Install
npm i --save minpatch
Example
var assert = require('assert')
var minpatch = require('minpatch')
var patches = [
{"op": "add", "path": "/biscuits/1", "value": {"name": "Ginger Nut"}},
{"op": "remove", "path": "/biscuits"},
{"op": "replace", "path": "/biscuits/0/name", "value": "Chocolate Digestive"},
{"op": "copy", "from": "/biscuits/0", "path": "/best_biscuit"},
{"op": "move", "from": "/biscuits", "path": "/cookies"},
{"op": "test", "path": "/best_biscuit/name", "value": "Choco Liebniz"}
]
var packed = minpatch.pack(patches)
console.dir(packed)
var unpacked = minpatch.unpack(packed)
assert.deepEqual(patches, unpacked)
API
pack(jsonPatchArray)
Pack a JSON Patch array. Will not mutate input object.
unpack(packedJsonPatchArray)
Unpack a packed JSON Patch array. Will not mutate input object.
License
MIT
Copyright 2015 JP Richardson