A yeoman generator for setting up new front-end projects that use Jade, Stylus, and CoffeeScript, using GulpJS, Browserify, and Jasmine. Also support for localised content, components, SVG icons or icon fonts, and responsive images using picturefill.
npm install generator-snowYeoman is a scaffolding application that helps you set up projects so you can get straight into the coding. Snow is a generator that scaffolds out a starter template with:
* Jade, Stylus, and CoffeeScript front-end stack
* Gulp configuration to compile and optimise templates, styles, scripts, and images, as well as run a development server with livereload (won't work with a VPN on)
* Localised content generated from a single JSON file
* NodeJS
* NPM
* GulpJS
* Yeoman:
```
$ sudo npm install -g yo
To install generator-snow from npm, run:
``
$ sudo npm install -g generator-snow
Then create a new project directory and then initiate the generator:
``
$ mkdir
$ yo snow
To create a new page:
``
yo snow:page [pagename]
To install Bower and Component dependencies:
``
gulp install
During development (compile, watch for changes, run a server):
``
gulp
For deployment (will package and optimise everything):
```
gulp deploy
MIT