npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@netpad-io/netpad-nodes-mongodb

v1.0.0

Published

MongoDB integration nodes for NetPad - Query, Insert, Update, Delete operations

Downloads

6

Readme

netpad-nodes-mongodb

MongoDB integration nodes for NetPad workflow automation. This community package provides nodes for all common MongoDB operations.

Installation

npm install netpad-nodes-mongodb

Nodes Included

1. MongoDB Query

Query documents from a MongoDB collection with support for:

  • Find operations with filters
  • Projection (field selection)
  • Sorting
  • Limiting results
  • Skip for pagination

2. MongoDB Insert

Insert documents into MongoDB collections:

  • Single document insert
  • Bulk insert multiple documents
  • Automatic ID generation
  • Return inserted IDs

3. MongoDB Update

Update existing documents:

  • Update single or multiple documents
  • Support for update operators ($set, $push, etc.)
  • Upsert capability
  • Return modified count

4. MongoDB Delete

Delete documents from collections:

  • Delete single or multiple documents
  • Filter-based deletion
  • Return deleted count

5. MongoDB Aggregate

Run aggregation pipelines:

  • Support for all aggregation stages
  • Complex data transformations
  • Group operations
  • Lookup (join) operations

Configuration

All nodes require MongoDB credentials to be configured in NetPad:

  1. Go to Credentials in NetPad
  2. Create new MongoDB credentials
  3. Enter your connection details:
    • Connection String (e.g., mongodb://localhost:27017)
    • Database Name
    • Authentication details if required

Usage Examples

Query Example

// Input configuration for MongoDB Query node
{
  "collection": "users",
  "filter": { "age": { "$gte": 18 } },
  "projection": { "name": 1, "email": 1 },
  "sort": { "createdAt": -1 },
  "limit": 10
}

Insert Example

// Input for MongoDB Insert node
{
  "collection": "products",
  "documents": [
    {
      "name": "Widget",
      "price": 19.99,
      "category": "tools"
    }
  ]
}

Update Example

// Input for MongoDB Update node
{
  "collection": "orders",
  "filter": { "status": "pending" },
  "update": {
    "$set": { "status": "processing" },
    "$currentDate": { "lastModified": true }
  }
}

Development

To contribute to this package:

  1. Clone the repository
  2. Install dependencies: npm install
  3. Make your changes in the src directory
  4. Build: npm run build
  5. Test locally: npm link
  6. Submit a pull request

License

MIT © NetPad Community

Support