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

autoenvconfig

v1.1.1

Published

Environment config that Just Works™!

Downloads

17

Readme

AutoEnvConfig

Environment config that Just Works™!

Stop worrying about the hassle of loading environment config files everywhere, config files with missing entries or schemas that gets old when you forget to add a new config key to it.

AutoEnvConfig is a fully-tested*, no-nonsense, no-dependencies package to help you keep your ever expanding project under control. *(bear with me on the beta features)

AutoEnvConfig was designed with simple but very powerful goals:

  • Blazingly fast: it caches everything it can, loads your files only once and check your schema on load, not on usage;
  • No extra configuration needed: this package follows the idea of convention over configuration, so it keeps the required environment files to a minimum and there is nothing to thinker with before start using it;
  • Never out of sync: when loading the environment configuration file, it checks the schema for missing or extra keys, alerting you when you are missing some key in your config or in your schema file;
  • Auto load of the right config file: you can set the root path of the project in the environment config file and it will load automatically;
  • Possible local eventual persistence (beta): you can overwrite data by code and have it persisted across restarts (or even deploys!) whenever needed. Things like general settings' dashboard for a small project gets really fast and easy (look, ma!, no databases!). You can backup your persistence file whenever you need or simply merge it with your env config periodically to make changes definitive.

To use it right away, npm install it and follow the super simple Quick Start Guide.

For more details, check out the Conventions and Public Methods API.

Installation

The simplest way to install this package is using npm:

$ npm i AutoEnvConfig

You can also manually download any release from our GitHub repository on the releases page or try the latest stable source. The links and info are also available on the project page.

Quick Start Guide

There are just four steps needed to start using this package:

  1. Create a folder named envs on your project's root;
  2. Create a config.schema file with your schema;
  3. Create a ENVNAME.json file for your environments with their specific configuration (where ENVNAME is whatever name you wish to use);
  4. Load the package. Done.

In your code:

const AutoEnvConfig = require('autoenvconfig');

let isValuePresent = AutoEnvConfig.has('deep.key.supported'));
if (isValuePresent) {
  let valueFromConfig = AutoEnvConfig.get('deep.key.supported'));
  console.log(valueFromConfig); //"myValue"
}

let itDoesDefaults = AutoEnvConfig.get('invalid.key', 'default');
console.log(itDoesDefaults); //"default"

Conventions

Magic Loading

One of the nicest features of the package is that you don't need to specify the environment, as it will magicly detect and load the correct file based on some values. This auto generated instance is called magic instance.

For the magic load to happen, your config.schema and ENVNAME.json files must have a _path key with the path of your project's root. It will find the correct environment checking this value by default. You can, however, safely ignore this convention and manually specify the file name if needed.

Schema and Environment File formats

The schema and environment config files are simple JSON files. The only limit for the keys is the dot character (".") which is forbidden (because it is used as a separator when loading), but I suggest you to limit your keys to alphanumeric chars for simplicity.

In the schema files, every key MUST be prefixed with either # or ?, indicating mandatory or optional key, respectively.

Sample Files

Sample config.schema

{
  "# _path": "",

  "# id": "",
  "# envtype": "",

  "# requiredKey": "",
  "? deep": {
    "? key": {
      "# supported": "myValue",
      "? asWell": "otherValue"
    }
  }
}

You can have a required key inside an optional object (in this sample, the supported required key is inside optional deep and key objects), so that you can omit the whole object (it will use the defaults), but if it exists in the environment config file, it must include at least these required keys.

Sample ENVNAME.json

{
  "_path": "/home/dnunes/code/node/autoenvconfig",

  "id": "dev",
  "envtype": "local",

  "requiredKey": "value"
}

Eventual Persistence

If you need to overwrite some settings through code you can use AutoEnvConfig.set(<key>, <value>)) method (or its instance counterpart). This change will not survive restarts or new deploys, though. For any time you need to have something persisted across local restarts or even deploys, you can now use AutoEnvConfig.persist(<key>, <value>)) and it will be loaded automatically on the next run/instance creation.

The persistence file defaults to the path envs/ENVNAME.persist.json but you can freely configure it using the _persistFile key in your ENVNAME.json. The path resolution defaults to the root of your project, so a value of custom.persist.json for the _persistFile key would create the persistence file in your project's root folder.

To avoid filling your I/O with multiple writes to disk, it will only persist the data periodically and efficiently using a minimum interval setting and dirty detection logic, so it's safe to call persist methods multiples times a second with no impact on performance whatsoever. An even improved logic suitable for eventual bursts in settings will be implemented in the future.

Methods

All the methods can be called in a specific instance (from a AutoEnvConfig.load call) or in the magic instance. You can save a reference for the magic instance using a AutoEnvConfig.load() call and call methods on this instance as well and it will work exactly the same as calling the methods directly on the package. The only exception is the "AutoEnvConfig.enablePersistence()" and "AutoEnvConfig.disablePersistence()"

Magic Methods

  • AutoEnvConfig.load([envName [, forceNew = false]]) This method will return a new instance of AutoEnvConfig. If you ommit the [envName] parameter, it will try to magic load the right env file. If you pass the [envName] parameter, it will just return the config for the specified env. It returns false if it cannot find a suitable environment config. If [forceNew] is false, it will reuse the first instance for the same [envName] created before.

  • AutoEnvConfig.get(<key>[, defaultValueIfNotPresent]) This method runs <Instance>.get(<key>[, defaultValueIfNotPresent]) on the magic instance.

  • AutoEnvConfig.has(<key>) This method runs <Instance>.has(<key>) on the magic instance.

  • AutoEnvConfig.set(<key>, <value>) This method runs <Instance>.set(<key>, <value>)) on the magic instance.

  • AutoEnvConfig.enablePersistence([minInterval = 120[, affectMagic = true]]) This method set persistence global setting to on. It will affect all new instances created after setting it. You can set the minimum interval between disk writes using the [minInterval] parameter. If [affectMagic] is true, it will also enable persistence on the current magic instance, if any.

  • AutoEnvConfig.disablePersistence([affectMagic = true]) This method set persistence global setting to off. It will affect all new instances created after setting it. If [affectMagic] is true, it will also disable persistence on the current magic instance, if any.

  • AutoEnvConfig.persist(<key>, <value>) This method runs <Instance>.persist(<key>, <value>)) on a magic instance.

Instance Methods

  • <Instance>.load([envName [, forceNew = false]]) The same as AutoEnvConfig.load([envName [, forceNew = false]]).

  • <Instance>.get(<key>[, defaultValueIfNotPresent]) This method will return the value of <key> in the <Instance> object. If <key> is not present in the <Instance> object, it will either return [defaultValueIfNotPresent] or throw an error if there the default value parameter was ommitted.

  • <Instance>.has(<key>) This method will return true if the <key> is present in the <Instance> object or false if not.

  • <Instance>.set(<key>, <value>) This method will replace the in-memory contents of <key> for the <Instance> object with <value>.

  • <Instance>.persist(<key>, <value>) This method will replace the in-memory contents of <key> for the <Instance> object with <value> and will eventually persist it on disk.

  • <Instance>.enablePersistence([minInterval = 120[, overrideMemory = true]]) This method enables persistence on <Instance>. You can set the minimum interval between disk writes using the [minInterval] parameter. If overrideMemory is true, it will also merge the in-memory config with the data loaded from the persistence file at the time persistence is enabled. It will load the persistence file on instance creation if global persistence setting in on.

  • <Instance>.disablePersistence() This method disables persistence on <Instace>.

Advanced Usage

You can override the default file and bypass the environment file search routine by calling the load method:

//will load envs/other.json
AutoEnvConfig = require('autoenvconfig').load('other');
AutoEnvConfig.get('key.in.other.file');

You can also load multiple configs if ever needed:

AutoEnvConfig = require('autoenvconfig');

//load the right env based on "_path" config value
let rightConfig = AutoEnvConfig.load();
rightConfig.get('key.in.right.file');

//load "envs/other.json"
let otherConfig = AutoEnvConfig.load('other');
otherConfig.get('key.in.other.file');

//load "envs/oneMore.json"
let oneMoreConfig = rightConfig.load('oneMore.json');
oneMoreConfig.get('key.in.onemore.file');

Note that you can call load directly on the package or on any AutoEnvConfig object returned by the load method.

Release History

  • 1.0.0 Added local eventual persistence (beta) and basic unit tests this new feature;

  • 0.1.6 Added unit tests for "set" methods and finished pending test for internal cache;

  • 0.1.5 Added "set" methods and started improving documentation for API. Missing unit tests on it;

  • 0.1.4 100% functions coverage and almost 100% branch coverage;

  • 0.1.3 Removed "get" aliases, fixed "instance.get()" and added "has" methods;

  • 0.1.2 Improved syntaxerror handling in schema files;

  • 0.1.1 Bugfix for using natural expected behavior after .load('name');

  • 0.1.0 Initial release.

Credits

Created and maintained (with much ♡) by diego nunes

Donations with Bitcoin to 1PQyeHqusUj3SuTmw6DPqWSHptVHkYZ33R:

1PQyeHqusUj3SuTmw6DPqWSHptVHkYZ33R