説明なし

Jonathan 7a3795d9fb fix: updated example dir name 5 年 前
dist 7c5f218d47 chore: initial release (v1.1.2) 5 年 前
example 7a3795d9fb fix: updated example dir name 5 年 前
.gitignore 7c5f218d47 chore: initial release (v1.1.2) 5 年 前
.npmignore 7c5f218d47 chore: initial release (v1.1.2) 5 年 前
README.md b1afb1261b docs: updated CDN link 5 年 前
lofig.js 7c5f218d47 chore: initial release (v1.1.2) 5 年 前
package.json b1afb1261b docs: updated CDN link 5 年 前
webpack.config.js 7c5f218d47 chore: initial release (v1.1.2) 5 年 前

README.md

lofig

npmjs.com/package/config for client side JavaScript

Installation

npm install lofig --save --production

You can also use https://unpkg.com/lofig@latest/dist/lofig.min.js.

Usage

import 'lofig' from 'lofig'; // not necessary if using CDN Link
// change config folder
lofig.folder = 'config/default.json';
// check if property exists
lofig.has('secret', res => {});
// return property
lofig.get('secret', res => {});

See example folder for more details.