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

miconfig

v1.1.6

Published

Configuration loader for Node.js, browsers & Deno.

Downloads

310

Readme

Last version Coverage Status NPM Status

miconfig — Configuration loader for Node.js, browsers & Deno.

Features

  • Easy: Designed for situations where a PhD into load configurations is infeasible.
  • Lightweight: no bloat, less than 1KB with all dependencies.
  • Isomorphic: Compatible with Node.js, browsers & Deno.
  • Flexible: Super easy load any kind of configuration.
  • Simple: The whole module is ~50 lines of code.

Install

$ npm install miconfig --save

Usage

In miconfig, a configuration is identified by environment name.

Load Configuration Files

Place the configuration files wherever you desire, e.g., in a folder called config:

.
├── index.js
└── config
   ├── default.js
   ├── production.js
   ├── staging.js
   └── test.js

Then, load them using miconfig:

const loadConfig = require('miconfig')

const FILES = [
  'default',
  NODE_ENV === 'development' ? undefined : NODE_ENV
].filter(Boolean)

const environment = FILES.reduce((acc, key) => {
  acc[key] = require(`./config/${key}`)
  return acc
}, {})

const config = loadConfig(environment)

In case you want to use a different file format (like YAML), you've to parser them before be loaded:

const environment = FILES.reduce((acc, key) => {
  acc[key] = fromYaml(`./config/${key}.yml`)
  return acc
}, {})

The default configuration is always loaded and merged with the target configuration environment.

miconfig uses process.env.NODE_ENV to determine what configuration should be loaded.

In case you want to use a different source of truth, you can pass it as second argument:

const loadConfig = require('miconfig')

const config = loadConfig(
  {
    default: require('./config/default'),
    production: require('./config/default')
  },
  process.env.APP_ENV
)

Accessing to configuration

After miconfig loads your configuration, you can safely access to any value.

Safe access

// read a value, don't care if it's empty
const database = config.get('database.url')

Safe access + default value

// read a value, use a default if empty
const database = config.get('database.url', 'localhost')

Require access

// read a value, throw an error if it doesn't exist
const database = config.require('database.url')

Typecheck access

// check if a value exists
if (config.has('feature.prerender')) {
  console.log('prerender is enabled')
}

Additionally, you can retrieve more than one value at one time with destructuring assignment:

Destructuring safe access

// read multiple values, don't care if it's empty
const { timezone, database } = config

Destructuring require access

// read multiple values, throw an error if one of them doesn't exist
const { timezone, database } = config.required

License

miconfig © Kiko Beats, released under the MIT License. Logo by Absurd Design.

Authored and maintained by Kiko Beats with help from contributors.

kikobeats.com · GitHub Kiko Beats · Twitter @Kikobeats