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

tenant-mongo

v1.0.0

Published

tenant-mongo (next [tenantmongo](https://github.com/debitoor/tenantmongo)) [![Build Status](https://travis-ci.org/mujichOk/tenant-mongo.svg?branch=master)](https://travis-ci.org/mujichOk/tenant-mongo) ===========

Downloads

3

Readme

tenant-mongo (next tenantmongo) Build Status

tenant-mongo, is a small layer on top of the mongodb native driver for node.js. It adds the following features

  • All documents stored will get a created timestamp
  • All documents modified will get a lastModified timestamp
  • Multi tenancy: One collection can be split up into completely isolated documents for each tenant, while still only having one underlying physical MongoDB collection
  • Safe deletion of documents (adding _deleted property instead of phisically remove document from collection)

Currently supported versions of MongoDB: 3.x, 4.x

Usage

Just include tenant-mongo package instead of mongodb

const { MongoClient, ObjectID } = require("tenant-mongo");

Configuration

You can specify current tenant options for db globaly or localy per collection

    const client = await MongoClient('mongodb://localhost:27017/my-tenant-db').connect();
    const dataBase = client.db().setTenant({ tenant: 'myGlobalTenant', collections: ['collection1', 'collection2'] });

    const collection1 = dataBase.collection('collection1'); // collection with global tenant
    const collection2 = dataBase.collection('collection2').setTenant('myLocalTenant'); // collection with overrided tenant
    const collection3 = dataBase.collection('collection3'); // regular mongodb collection

Soft delete

tenant-mongo soft deletes all documents. It just sets _deleted: new Date() instead of deleting. And it adds _deleted: {$exists: false} to all queries.

To bypass the softDelete on deleting or quering data you can do like this:

    const client = await MongoClient('mongodb://localhost:27017/my-tenant-db').connect();
    const dataBase = client.db().setTenant({ tenant: 'myGlobalTenant', collections: ['collection1', 'collection2'] });

    const collection1 = dataBase.collection('collection1').setDeletionMode('hard'); // collection with 'hard' deletion mode

    collection1.remove({ }, callback); //will find all documents including soft-deleted documents

Warning

Currently not supported default arguments for following collection method:

  • find
  • remove
  • aggregate

so, if you going to skip query|selector or pipeline params it will not work correctly.