jsonpatch-to-mongodb

Convert JSON patches into a MongoDB update

Usage no npm install needed!

<script type="module">
  import jsonpatchToMongodb from 'https://cdn.skypack.dev/jsonpatch-to-mongodb';
</script>

README

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