Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nconf-encrypted

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nconf-encrypted

Ecryption wrapper around nconf

  • 1.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

nconf-encrypted

Keep your secrets safe!

License: ISC

Encrypted wrapper around nconf.

const nconf = require('nconf-encrypted');

nconf
  .argv()
  .env()
  .use('someConfigFile', { type: 'file', file: '/path/to/config.json' })
  .use('moreConfig', { type: 'literal', store: { a: 'OK', b: true } });

// retrieve value
nconf.get('a'); // 'OK'
nconf.get('b'); // true

// view all stores (note all keys and values are now encrypted)
nconf.get();

// optionally bring your own encryption key
nconf.setEncryptionKey(`32CharacterString`);

// Extra trick to prevent rogue modules from leaking / dumping environment variables
process.argv = [];
process.env = {};

Authors

fijimunkii

License

This project is licensed under the ISC License - see the LICENSE file for details.

Keywords

FAQs

Package last updated on 16 Jul 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc