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

nice-config

v1.0.3

Published

NodeJS application configuration using yaml files and, optionally, remote property sources like spring cloud config server.

Downloads

90

Readme

Yaml Config + Remote Property Sources for NodeJS Applications

NPM Version Build Status Coverage Status

You get to define your configuration in yaml! Plus, you can override configuration at runtime using remote property sources, like Spring Cloud Config Server. Hellooo feature flags!

Getting Started

Install the package

npm install nice-config

Step 1

Create an application.yml in /config, or a group of application.yml and application-{profile}.yml files.

/config/application.yml

spring.cloud.config.name: my-application-name
db:
   mongo:
      url: http://localhost:27017
---
profiles: dev1,dev2
db:
   mongo:
      url: http://dev-mongo-server:27017
---
profiles: staging,prod
db:
   mongo:
      url: http://prod-mongo-server:27017

Step 2 (optional)

If you're looking to add remote property sources at runtime, create a bootstrap.yml in /config.

/config/bootstrap.yml

spring:
   cloud:
      config:
         enabled: true
         endpoint: http://localhost:8888
         label: master
---
profiles: dev1,dev2
spring.cloud.config.endpoint: http://dev-config-server:8888
---
profiles: staging,prod
spring.cloud.config.endpoint: http://prod-config-server:8888

Step 3

Load your configuration during startup/initialization.

/initialize.js

const Config = require('nice-config');

export const initialize = async () => {
   await Config.load();
   // ... other initializations
}

Step 4

Use the config later on in your code.

const Config = require('nice-config');

const myConfig = Config.instance();
console.log(`My Mongo DB URL: ${myConfig.db.mongo.url}`);

Using typescript? No problem...

/initialize.ts

import { Config } from 'nice-config';

export const initialize = async () => {
   await Config.load();
   // ... other initializations
}

Now you can use the config properties later on.

import { Config } from 'nice-config';

const { db } = Config.instance();
console.log(`My Mongo DB URL: ${db.mongo.url}`);

Things Explained

The Yaml Files

As mentioned above, this module uses Yaml files to configure your application properties. By default, the module will look in /config for your config files: application.yml (required) and bootstrap.yml (optional). You can customize the location of these files using environment variables (see specs below). The application yaml defines your application's configuration properties. The bootstrap yaml defines your remote property sources (like spring cloud config server).

Note for Spring Cloud Config users: Optionally, you can specify your application's name in application.yml instead of in bootstrap.yml, using the spring.cloud.config.name property. Doing so gives you the option of using a shared bootstrap.yml (i.e. shared with other apps) but still be able to specify your individual application's name.

Support for Profiles in Multi-Document Yaml

You can include multiple Yaml documents in a single Yaml file, using --- as the document separator. Additionally, you can use documents to scope certain properties to specific environments.

Here's how:

  1. Use the profiles property in your yaml document to specify which environment/profile the properties should be used for.
  2. Set the ACTIVE_PROFILES environment variable to the value corresponding to the current environment(s).

For example, say you set process.env.ACTIVE_PROFILES to dev2 and define the below config in application.yml:

spring.cloud.config.name: my-application-name
db:
   mongo:
      url: http://localhost:27017
---
profiles: dev1,dev2,!local
db:
   mongo:
      url: http://dev-mongo-server:27017

The resulting configuration will look like this:

{
   spring: {
      cloud: {
         config: {
            name: 'my-application-name'
         }
      }
   },
   db: {
      mongo: {
         url: 'http://dev-mongo-server:27017'
      }
   }
}

Applying Yaml Docs to Multiple Profiles

You can apply the properties of a Yaml doc to multiple application profiles. Just provide a comma separated string of profile names in the doc's profiles property, like profiles: dev1,dev2.

Excluding Yaml Docs from Profiles

This module supports the Not operator (!) on profiles, which helps to exclude configuration properties from specific profiles. Just prepend an '!' to the profile name you want to exclude the given yaml doc from, like profiles: !prod,!staging.

Support for Profile-Specific File Names

If your application supports a wide range of profiles and/or properties then you might consider using profile-specific file names for your application.yml. Wherever you keep your application.yml, just add more yaml files named with this pattern: application-{profile}.yml.

Examples

config/application.yml
config/application-local.yml
config/application-dev.yml
config/application-dev2.yml
config/application-prod.yml

Node Env Properties

This module supports some pre-defined properties/property sources from the Node env. This enables you to exclude sensitive data from your repository files and instead provide them using environment variables. For example, you might want to exclude the username and password used for authenticating with your remote config server from your git repo.

Be aware, env variables take highest precedence so they'll override whatever value is provided from other sources.

Environment Variables

| Env Variable Name | Type | Usage | | --- | --- | --- | | CONFIG_PATH | string | The folder path to your application config file(s). Default: /config | | ACTIVE_PROFILES | string | Comma-separated string of profile names to use. Default: none | | LOG_LEVEL | debug, info, warn, error | The logging level to be used by nice-config. Default: warn | | APPLICATION_JSON | Stringified JSON Object | When APPLICATION_JSON is set in Node env, the value will be read into the application's configuration as a high priority set of properties.Example: APPLICATION_JSON='{ "testProp": "testValue" }' node index.js |

Remote Property Sources

You can enable the use of remote property sources in your bootstrap.yml. For example, enable Spring Cloud Config Server via the bootstrap property spring.cloud.config.enabled: true.

When using remote property sources the properties from your remote config will be merged with your application.yml, with the remote sources taking higher precedence.

Remote Property Source Options

API

load function (async)

Reads all defined property sources, including remote cloud config properties (if enabled), and returns the merged configuration properties object.

instance function

Returns the current configuration properties object. Use the load function prior to using this.

application.yml Application Config Properties

Option | Type | Description ------ | -------- | ----------- profiles | string | (Optional) Comma separated string of profiles. Indicates which profiles the properties in the current yaml document apply to. any.property.you.need | ? | This is where you define whatever properties your application needs to be awesome!