generator-areus
v1.3.1
Published
Yeoman generator
Downloads
7
Readme
generator-areus
Opinionated scaffolding tool for quickly generating a new express.js app with logical defaults.
The major architecture pieces include:
- express.js - routing
- react or dustjs - view engine
- gulp.js - task manager
- bunyan - logging
- nconf - configuration
Install
Requires node.js and npm
npm install -g yo generator-areus
Usage: App
Make a new directory, and cd into it:
mkdir my-new-project && cd $_
Run the generator:
yo areus
Once generation is complete, open the generated readme.md
for instructions on how to use the app.
Usage: Module
Generates a new shared module to be published to the npm registry and shared between apps.
Make a new directory, and cd into it:
mkdir my-new-project && cd $_
Run the generator:
yo areus:module
Once generation is complete, you can reference it in your app locally (while developing) using npm link
.