New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

cfg-js

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cfg-js

A simple config module

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

cfg-js

A simple config module

Install

This package depends on Node.js.

$ npm install cfg-js

Usage

var Config = require('cfg-js');

var cfg = new Config({
    hello: {
        cfg: {
            js: 'hello cfg-js'
        }
    }
});

cfg.has('hello.cfg.js'); // true
cfg.get('hello.cfg.js'); // 'hello cfg-js'

cfg.has('js.cfg.hello'); // false
cfg.get('js.cfg.hello'); // undefined

License

This software is under the MIT license. See the complete license in:

LICENSE

Keywords

config

FAQs

Package last updated on 04 Jul 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts