alp-config

3.5.2 • Public • Published

alp-config

config in alp framework

In your app

import packageConfig from './package.json';
import { Config } from 'alp-config';
 
const config = new Config(__dirname + '/config');
export default config;
config.loadSync({ packageConfig });

With Koa

import Koa from 'koa';
import config from './config';
 
const app = new Koa();
config()(app, config);

With Ibex

Config is cached in localstorage. /config is the path to the public config folder.

import Ibex from 'ibex';
import config from './config';
 
const app = new Ibex();
app.appVersion = '1.0.0';
config('/config')(app);

With Alp

import Alp from 'alp'; 
import config from './config';
 
const app = new Alp({ config });

/alp-config/

    Package Sidebar

    Install

    npm i alp-config

    Weekly Downloads

    22

    Version

    3.5.2

    License

    ISC

    Unpacked Size

    302 kB

    Total Files

    34

    Last publish

    Collaborators

    • churpeau