1.3.1 • Published 7 years ago
@rtobon/app-config v1.3.1
@eagle/app-config
Cascading configuration for web application
Install
npm install --save @eagle/app-config
Repository
https://github.com/Graf009/app-config.git
Usage
Loads configuration files from a config
folder in your project root.
default
is always loaded if it exists- If you specify
NODE_ENV=production
then bothproduction
anddefault
are loaded, withproduction
taking precedence. - Any valid JS extension can be used for config - JS, json, etc.
- To load another extension, register it before you require this module
import config from '@eagle/app-config'
For working in browser add AppConfigPlugin in webpack config.
import AppConfigPlugin from '@eagle/app-config/webpack'
var webpackConfig = {
plugins: [
new AppConfigPlugin(),
]
}