mongodb-js / jsonpatch-to-mongodb

Convert JSON patches into a MongoDB update

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jsonpatch-to-mongodb

build status

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

About

Convert JSON patches into a MongoDB update

License:MIT License


Languages

Language:JavaScript 100.0%