slush-app
v0.9.5
Published
An easy customizable slush generator to scaffold web app.
Downloads
49
Maintainers
Readme
slush-app
An easy customizable slush generator to scaffold modern web apps.
Installation
Install slush-app
globally:
npm install -g slush-app
Remember to install gulp
, bower
and slush
globally as well, if you haven't already:
npm install -g gulp bower slush
Usage
Create a new folder for your project:
mkdir my-app
Run the generator from within the new folder:
cd my-app
slush app
Enter project specific information and choose items which you want to use:
Gulpfile
Development
To start developing in your new generated project run:
gulp serve
Then head to http://localhost:3000
in your browser.
The serve
tasks starts a static file server, which serves your website, and a watch task which watches your files for changes, builds and injects them into your html files accordingly.
Build
To make build version:
gulp
Production
To make the app ready for deploy to production run:
gulp dist
Now you have a dist
folder with all your scripts and stylesheets concatenated and minified, also third party libraries installed with bower will be concatenated and minified.
License
MIT