This is my default starting point for rapid front-end web development.
This boilerplate uses
less
css preprocessorpug
(formerlyjade
) template enginecoffeescript
bower
front-end package managergrunt
for automatic building
Make sure you have installed node.js and npm.
git clone https://github.com/ernestii/jadeless.git
cd jadeless
Edit package.json
, Gruntfile.coffee
, bower.json
to match your project name, version and dependencies.
# install dependencies listed in package.json
$ npm install
# install dependencies listed in bower.json
$ bower install
# remove old build
$ rm -rf build
# build project
$ grunt
I used sapphiriq's Gruntfile.coffee as starting point for this template (https://gist.github.com/sapphiriq/4326419)