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

confme

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

confme

Opinionated config library that allows you to have complex config and behaves according to 12-factors apps rules

  • 0.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
441
decreased by-28.29%
Maintainers
1
Weekly downloads
 
Created
Source

confme

Opinionated config library that allows you to have complex config and behaves according to 12-factors apps rules.

  • It is build on top of "dotenv-defaults"
  • Uses LIVR (with extra rules) for config schema validation.
  • Follows the ideas of 12 factors app

How does it work?

"confme" loads your config and replaces placeholders with environment variables. For environemnt loading it uses "dotenv-defaults", so you can create ".env.defaults" file to set default values of environment variables. If you have placeholders for non set environment variables then "confme" will throw an error.

You can pass a path to a JSON file with LIVR rules as a second argument. In this case, it will use LIVR (with extra rules) to validate the config.

const confme = require("confme");
const config = confme(__dirname + "/config.json");
const confme = require("confme");

const config = confme(
  __dirname + "/config.json",
  __dirname + "/config-schema.json"
);

Full example in examples folder

Keywords

FAQs

Package last updated on 18 Mar 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