dragonnodejs-bundle-skeleton
v1.0.1
Published
Skeleton for a bundle with the DragonNode.js Framework
Downloads
3
Readme
DragonNode.js Bundle Skeleton
Skeleton for a bundle with the DragonNode.js Framework
Installation
- Add bundle to the "package.json":
{
"dependencies": {
"dragonnodejs-bundle-skeleton": "^1.0.1"
}
}
- Run "npm install"
- Extend the configuration in "app.js":
let config = {
directory: __dirname + '/',
modules: [
[require('dragonnodejs-bundle-skeleton'), [
['modules/example', {}]
]]
]
};
require('dragonnodejs')(config);