liteframe-core
v3.1.2
Published
A flexible lightweight framework with the bare minimums and networking capabilities
Downloads
20
Maintainers
Readme
_ _ _ __
| (_| |_ ___ / _|_ __ __ _ _ __ ___ ___ v.3
| | | __/ _ | |_| '__/ _` | '_ ` _ \ / _ \
| | | || __| _| | | (_| | | | | | | __/ -core
|_|_|\__\___|_| |_| \__,_|_| |_| |_|\___|
(https://www.npmjs.com/package/liteframe-core)
A flexible lightweight framework with the bare minimums and networking capabilities
Extending the framework can be done by
.inject("extension_key",extension_object_value);
or
.inject([{extension_key:extension_object_value},{extension_key:extension_object_value}]);
To install
npm install -g liteframe-core
Extending the framework can be done by
.inject("extension_key",extension_object_value);
or
.inject([{extension_key:extension_object_value},{extension_key:extension_object_value}]);
e.g
let liteframe_core = require("liteframe-core");
liteframe-core.inject([{sample : { one: "I am a sample injected value"}}]);
console.log(liteframe-core.sample);
//prints `I am a sample injected value`
Documentation
In progress at [liteframe-core.bixbyte.io](http://liteframe-core.bixbyte.io)