ezxpress
v1.0.7
Published
Simple express app generator with AngularJS front-end framework
Downloads
6
Readme
Express application generator with AngularJS boilerplate.
Installation
$ npm install -g ezxpress
Quick Start
Create the app:
$ ezx --git --gulp --css sass /tmp/foo
Install dependencies:
$ cd /tmp/foo && npm install
Start your Express.js app at http://localhost:5000/
:
$ npm start
Sample Directory Structure
foo/
├── app/
│ ├── app.js
│ ├── gulpfile.js
│ ├── .gitignore
│ ├── package.json
│ ├── bin/
│ │ ├── www
│ ├── public/
│ │ ├── index.html
│ │ ├── assets/
│ │ ├── css/
│ │ │ ├── style.css
│ │ ├── js/
│ │ │ ├── app/
│ │ │ │ ├── app.config.js
│ │ │ │ ├── app.module.js
│ │ │ ├── component/
│ │ │ │ ├── example.component.js
│ │ │ │ ├── example.template.html
│ ├── routes/
│ │ ├── users.js
Command Line Options
This generator can also be further configured with the following command line flags.
-h, --help output usage information
--version output the version number
-c, --css <engine> add stylesheet <engine> support (less|stylus|compass|sass) (default: css)
--git add .gitignore
--gulp add gulpfile.js with browser-sync and nodemon
-f, --force force on non-empty directory