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

sas-dbhelper

v0.5.2

Published

A lightweight MongoDB wrapper with Redis caching and data encryption built-in.

Downloads

82

Readme

DB Helper

Db helper is a lightweight wrapper for common db actions that wraps around MongoDB and uses Redis for caching and provides optional AES-256 encryption and decryption mechanisms to easily secure your data. Db helper is a project package by the Suits & Sandals team.

Encryption

Version 0.4.10 of Db helper you can now enable encryption for all of your queries without worrying about encryption and decryption boilerplate and handling.

Warning

Db helper is currently in beta and not suitable for production.

Prerequisites

To begin, Dbhelper uses Redis & Mongo as a dependency. Make sure you have downloaded, installed, and running Redis in your environment.

brew install redis

Once installed run the following command:

redis-server

Db helper will also require you to install and run mongodb. For instructions on setting that up visit the MongoDb docs here: (https://docs.mongodb.com/manual/installation/)

Installing

Now that Db helper's dependencies have been installed download and install the db helper npm package to your local project.

npm install dbhelper --save

This will install Db helper to your local project's modules.

Usage

To use Db helper import it at the top of your file:

var Dbhelper = require('sas-dbhelper');

Then create a dbhelper object and pass in your Mongo connection url & database name like so:

var User = new Dbhelper('YOUR MONGO URL', 'YOUR DBNAME');

Db helper comes bundled with database query wrappers for Mongo and Redis. When Redis querying is turned on, db helper will use Redis as a cache: Querying Redis first for the data, and if it not present querying mongo for the data. If data is found in mongo, db helper will cache it to Redis for future requests.

Since Db helper is wrapped around the Mongo native driver for Node, many of the commands will be similar to Mongo native API with one exception: Db helper expects all commands to be passed with a callback to return the data to your app.

~~Because Db helper is a schema-less wrapper, you must be thoughtful of how you store data in Mongo and Redis to ensure consistent data.~~

Optional schema API available as of version 0.2.0

Available Commands

The following commands are available to you: find, findOne, findOrCreate (no caching), create, updateOne, deleteOne, deleteMany (no caching)

To use caching for find, findOne, create, updateOne, & deleteOne commands you must pass in the options object with a key 'cache' set to 'true'. You will also need to name the key you'd like to get or set in case that the value does not yet exist in your Redis instance. You may also pass in other options in accordance to Mongo Native's docs.

find

To run a find query using db helper WITHOUT caching use:

User.find(query = {email: "[email protected]", collection: "users"}, callback, options);

//Returns data as an object

To run a find query WITH caching use:

User.find(query = {email: "[email protected]", collection: "users"}, callback, options = {cache: true, key: "[email protected]"});

//Returns data as an object

findOne

To run a find query using db helper WITHOUT caching use:

User.findOne(query = {email: "[email protected]", collection: "users"}, callback, options);

//Returns data as an object

To run a find query WITH caching use:

User.findOne(query = {email: "[email protected]", collection: "users"}, callback, options = {cache: true, key: "[email protected]"});

//Returns data as an object

findOrCreate

This command will return two things: A boolean indicating whether or not your object was saved to the db & the object that was found/saved.

To run a find or create query using Db helper use:

User.findOrCreate(query = {email: '[email protected]', collection: 'user'}, data = {email: '[email protected]', password: 'test1234'}, callback, options)

The variable data, in this example, is what we want to save to the database should the object not be found.

create

This command will return two things: A boolean indicating whether or not your object was saved to the db & the object that was saved.

To run a create query using Db helper use:

User.create({email: '[email protected]', collection: 'user'}, callback, options)

NOTE: create now internally uses insertOne see Mongo Native Docs for more on optional usage instructions.

updateOne

To run an update query using db helper WITHOUT caching use:

User.updateOne(query = {email: "[email protected]", collection: "users"}, data = {email: "[email protected]"}, callback, options);

//Returns modified data as an object

To run a find query WITH caching use:

User.updateOne(query = {email: "[email protected]", collection: "users"}, data = {email: "[email protected]"}, callback, options = {cache: true, key: "[email protected]"});

//Returns modified data as an object

NOTE: updateOne now internally uses findOneAndUpdate see Mongo Native Docs for more on optional usage instructions.

deleteOne

To delete an object from your db WITHOUT caching use:

User.deleteOne(query = {email: "[email protected]", collection: "users"}, callback, options);

To delete an object from your db WITH caching use:

User.deleteOne(query = {email: "[email protected]", collection: "users"}, callback, options = {cache: true, key: "[email protected]"});

Schemas

As of version 0.2.0 of Db helper, you are now free to define a schema object and have it enforced against any query that creates or updates. To define a schema first create an object like so:

let mySchemaObj = {
  email: 'string',
  password: {required: 'true', type: 'string'},
  phone: {type: 'number', default: '5515555555'}
}

Then pass your schema object to your declared Db helper object like so:

User.schema(mySchemaObj);

Now to enforce schema, pass an options object in whatever create or update query you're making like so:

User.updateOne(query = {email: "[email protected]", collection: "users"}, data = {email: "[email protected]"}, callback, options = {schema: true});

Relationships

As of version 0.3.0 of Db helper you may now define a One-to-One relationship with Db helper using the via key when defining your schema, like so:

var mySchemaObj = {
  email: 'string',
  password: {required: 'true', type: 'string'},
  phone: {type: 'number', default: '5515555555'},
  createdBy: {default: '', via: 'user'}
}

The example above added the via flag to the key of createdBy. Now when an ObjectId as a string is passed to it, it will query your collection (as defined by the via key) and append the key with the result.

Validate

Version 0.4.0 of Db helper exposes the internal function .validate(object). This function validates the object passed to it against your schema. It returns the validated object making modifications to any key that has a schema value object with a via key. It will also create a key if it is required and has a default value set in the schema but isn't present in the object being validated.