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 🙏

© 2024 – Pkg Stats / Ryan Hefner

mongodb-simple

v1.1.2

Published

Bare to the bone promise-based module for working with MongoDB suited for the simplest projects.

Downloads

9

Readme

mongodb-simple

Bare to the bone promise-based module for working with MongoDB suited for the simplest projects.

##Usage Examples

Connection string

const connection = {
    uri: "localhost:27017",
    username: "nathan",
    password: "yqz992022"
}

Create a collection.

var mongosi = require('mongodb-simple')
mongosi.createCollection(connection, 'users')

Drop a collection.

var mongosi = require('mongodb-simple')
mongosi.dropCollection(connection, 'users')

Search documents from a collection.

var mongosi = require('mongodb-simple')

mongosi.searchDocuments(connection, 'users', {
    lastname: 'Lee'
}).then((result) => {
    console.log(result)
}, (error) => {
    console.log(error)
})

Find a document by its ID from a collection.

var mongosi = require('mongodb-simple')

mongosi.getDocumentById(connection, 'users', "59bf5b06705d282d3072effb"
).then((result) => {
    console.log(result)
}, (error) => {
    console.log(error)
})

Get all documents from a collection.

var mongosi = require('mongodb-simple')

mongosi.getAllDocuments(connection, 'users'
).then((result) => {
    console.log(result)
}, (error) => {
    console.log(error)
})

Insert documents into a collection.

var mongosi = require('mongodb-simple')
var users = [{name: "Nathan Lee", age: 25}, {name: "Yuqing Zhu", age: 21}]

mongosi.insertDocuments(connection, 'users', users)
.then((result) => {
    // returns the result JSON on success
    console.log(result)
}, (error) => {
    console.log(error)
})

Delete documents in a collection by IDs.

var mongosi = require('mongodb-simple')

mongosi.deleteDocumentsByIds(connection, 'items', [
    '59e02452ebc0afc01a54d13f', '59e0245a155c81932bf3a20f'
    ])
.then((result) => {
    // returns the result JSON on success
    console.log(result)
}, (error) => {
    console.log(error)
})

Add a user.

var mongosi = require('mongodb-simple')
var roles = 
{
    roles: [{
        role: "root",
        db: "admin"
    }]
}

mongosi.addUser(connection, 'nathan', 'password', roles)

Add an admin.

var mongosi = require('mongodb-simple')

mongosi.addAdmin(connection, 'nathan', 'password')

Remove an user.

var mongosi = require('mongodb-simple')

mongosi.removeUser(connection, 'nathan')

##Updates ###1.1.0 Added authentication. Additional functionalities. Now uses connection string. ###1.1.1 Added deleting documents in a collection by IDs. insertDocuments() now returns result JSON instead of inserted documents. ###1.1.2 Fixed collection dropping; dropCollection() works properly. Connection now properly closes on promise rejection.