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

mongoose-encipher

v0.1.5

Published

Mongoose plugin for symmetrical encryption of database entries using crypto-js

Downloads

2

Readme

Travis Status

codecov

Mongoose encryption plugin

This plugin is simillar to the Mongoose-Cipher or Mongoose-encryption plugin but it will support encryption of nested values and it will work with Mongoose 5.x.

The plugin will store values in database with symetrical encryption and uses Crypto-js.

Why another encryption plugin?

Because the other available plugins are not working for me. Seems like there are some issues related to Mongoose v5.

At mongoose-encryption there is a PR trying to fix a problem related to Mongoose 5 but the PR is still open and I couldn't find a fix there - many failing unit tests. Also tests are failing with-out change from the PR.

mongoose-cipher wasn't working for my use-case - encryption of a nested schema. e.g. { content: '...', user: {username: 'encrypted}}

Usage

Installation

npm install mongoose-encipher or yarn add mongoose-encipher

Basic example

const encipher = require('mongoose-encipher').default
// or import encipher from 'mongoose-encipher'

const UserSchema = mongoose.Schema({ username: String, email: String })
UserSchema.plugin(encipher, { fields: ['username', 'email'], secret: 'mysecret-key' })

const User = mongoose.model('user', UserSchema)
const john = new User({username: 'John', email: '[email protected]'})
john.save()

This will create data simillar to the following for user john.

{
    _id: ObjectId("5b1a215481c9235d60a02d22"),
    username: "U2FsdGVkX1+pCWDTtFvysJrjskUsAIRqlXOepFPpnvM=",
    email: "U2FsdGVkX1/PbGWvQQvm6zVSeOWeLFQzCRgr40g3oyg=",
    __v: NumberInt(0)
}

Quering as usual with User.find() or User.findOne() the plugin will decrypt all encrypted fields and returns a readable document. For more details see supported methods below.

Supported mongoose methods

  • find and findOne
  • findById
  • findAndUpdate and update
  • save

Query exception: Querying an encrypted field is not supported yet. Keep your query data unencrypted and if you need to query by an encrypted key you could get all and filter manually (not recommended as this could get slow).

Installation for development & building

Clone the repo then yarn install to install dependencies.

Use yarn build to build the plugin.

Use yarn test to run the tests.

Use yarn cover to run coverage report.

Examples

To run the examples go into the examples directory and run node basic.js to run it. You maybe need to modifiy the port of your local mongo service (if it's different). Also be sure to have mongod running before execution.

If you need help to start & setup MongoDB locally with Windows, this SO question will help.

Security notes

  • Keep a copy of the secret in a save place locally. If you're loosing the key the data can't be decrypted anymore.
  • Store your secret for encryption in a save place e.g. environment variable of your hoster and use it with process.env
  • If someone compromises your backend login to your hoster it's possible to decrypt all data
  • Never decrypt client side - if you're creating a serverless app consider using AWS lambdas to get the data.

License

The MIT License

Copyright (c) 2018 Alexander Wolf

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.