json-config-notation
v1.0.4
Published
**"JSON Config Notation" helps you record configurations in JSON format. First, you need to write the config in some JSON file, and then specify the path to this file, then you can get the key value through the get method.**
Downloads
5
Readme
JSON Config Notation
"JSON Config Notation" helps you record configurations in JSON format. First, you need to write the config in some JSON file, and then specify the path to this file, then you can get the key value through the get method.
API
const config = new JCN('config path');
const PORT = config.get('key');
console.log(PORT); // 3000