Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

nodejs-config-loader

lling11058MIT1.0.8

Load config settings from remote url when you want share settings between multi projects as needed

node.js

readme

nodejs-config-loader

Load config settings from remote url when you want share settings between multiple projects as needed,this module can be used in your front-end project(vue.js,react.js,etc.) and back-end project(node.js)

Module Usage

Install

npm install nodejs-config-loader

Usage

Module Require:

var configLoader = require("nodejs-config-loader");

Options, only need set once, usually set below at front-end or back-end startup phase

configLoader.setOptions({
    remoteBaseUrl: "...",//your http request baseUrl,it'srequired
    API:"" //the RESTApi to get config json data, make sure your own api return json object, optional
});

Method Use:

configLoader.getConfigValue('configkey'); //this will return the specific config value by property name