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

varium

v2.0.6

Published

Declare and validate environment variables

Downloads

276

Readme

Varium

Varium is a library and syntax for managing environment variables in a sane way. You should use it if you want to:

  • declare all used environment variables in one place
  • specify which types they have
  • validate that they are of the right type
  • cast environment variables to the right type when used
  • require certain variables
  • default to a value for other variables
  • abort CI if variables are missing or fail validation
  • warn developers if they use an undeclared environment variable

Installation

npm install varium --save

Requires node v6.5 or above.

Usage example

Create a file called env.manifest in the project root. It should contain all environment variables used in the project. For example:

API_BASE_URL : String
API_SECRET : String

# This is a comment
# The following is an optional variable (the above were required):
NUMBER_OF_ITEMS : Int |

FLAG : Bool | False # Variables can also have default values. Here it is False
COMPLEX_VALUE : Json | [{ "object": 42 }] # Use json for advanced data structures

QUOTED_STRING : String | "Quote the string if it contains # or \\escaped chars"

Then create the file which all your other files imports to obtain the config. For example config/index.js. This needs to at least contain:

const varium = require('varium');

module.exports = varium();

Import this file in the rest of your project to read environment variables:

const config = require('../config');
const url = config.API_BASE_URL;

// An error will be thrown if you try to load an undeclared variable:
const wrong = config.API_BASE_ULR;
// -> Error('Varium: Undeclared env var "API_BASE_ULR.\nMaybe you meant API_BASE_URL?"')

To prevent other developers or your future self from using process.env directly, use the no-process-env eslint rule.

Your environment now needs to contain the required variables. If you use a library to load .env files (such as node-forman or dotenv), the .env could contain this:

API_BASE_URL=https://example.com/
API_SECRET=1337
NUMBER_OF_ITEMS=3

To abort builds during CI when environment variables are missing, just run the config file during th build step. For example, on heroku the following would be enough:

{
  "scripts": {
    "heroku-postbuild": "node ./config"
  }
}

For a complete syntax and api reference (for example how to add your own custom types), see the docs.