Set up your JS/Node project for different environments
Set up your JS/Node project for different environments
resolve-node-configs-hierarchy
library allows you to manage your configurations for different environments easily. You can have separate files for development
, test
, staging
, production
etc. environments without writing special logic for that. It works with any files and extensions (.env
files, or *.js
sources, or *.json
configs etc.)
Set up local configurations
Set up local configurations
With resolve-node-configs-hierarchy
library you can create local versions of configuration files with some local-specific data (don't put them under version control!). For example, you can create your personal AWS S3 bucket for testing in local development environment and add corresponding keys to your local development configuration file (don't forget to add it to .gitignore
). Without any line of code!
Very simple synchronous and asynchronous API
Very simple synchronous and asynchronous API
resolve-node-configs-hierarchy
library is very simple and yet powerful. It takes almost no time to learn it. And it doesn't install any runtime dependencies.