Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@creately/mungo

Package Overview
Dependencies
Maintainers
6
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@creately/mungo

Javascript implementation of MongoDB update operators.

  • 1.3.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
6
Created
Source

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

Keywords

FAQs

Package last updated on 27 May 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc