@lab009/app-config
v2.0.0
Published
Configuration for universal web application
Readme
@lab009/app-config
Configuration for universal web application
Install
npm install --save @lab009/app-configRepository
https://github.com/lab009/app-config.git
Usage
Loads configuration files from a config folder in your project root.
defaultis always loaded if it exists- If you specify
NODE_ENV=productionthen bothproductionanddefaultare loaded, withproductiontaking 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 '@lab009/app-config'For working in browser add AppConfigPlugin in webpack config.
import AppConfigPlugin from '@lab009/app-config/webpack'
var webpackConfig = {
plugins: [
new AppConfigPlugin(),
]
}