Skip to content

Latest commit

 

History

History
36 lines (22 loc) · 503 Bytes

readme.md

File metadata and controls

36 lines (22 loc) · 503 Bytes

mungo

Javascript implementation of MongoDB update operators.

Getting Started

Install the package

npm install @creately/mungo

Import the modify function from mungo and call it with the document.

import { modify } from 'mungo'

const doc = { id: 'id', x: 10 }
modify(doc, { $set: { x: 20 } })

console.log(doc)
// { id: 'id', x: 20 }

Supported Operators

Field Update Operators

  • $set

Array Update Operators

  • $push
  • $pull

Bitwise Update Operators