jsonpatch-to-mongodb
v1.0.0
Published
Convert JSON patches into a MongoDB update
Downloads
14,874
Maintainers
Readme
jsonpatch-to-mongodb
Convert JSON patches into a MongoDB update.
Example
var toMongodb = require('jsonpatch-to-mongodb');
var patches = [{
op: 'replace',
path: '/name',
value: 'dave'
}];
console.log(toMongodb(patches));
// {'$set': {name: 'dave'}};
Example: with express and mongoose
Install
npm install --save jsonpatch-to-mongodb
Test
npm test
License
MIT