1.0.1 • Published 9 years ago

dragonnodejs-bundle-skeleton v1.0.1

Weekly downloads
7
License
MIT
Repository
github
Last release
9 years ago

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);