/node-starter-kit

A simple starter kit for your nodejs applications

Primary LanguageJavaScriptMIT LicenseMIT

node-starter-kit

A starter kit built using nodejs/expressjs that with a number of preconfigured grunt tasks and scripts to make your life easier.


Global dependencies

sudo npm install -g grunt-cli
sudo npm install -g node-inspector

Local dependencies

npm install

Start your server using nodemon

npm run start

Start your server in debug mode with node inspector

npm run debug

Create a pre-commit git hook that runs jshint before every commit

grunt githooks

Compile your scss files in public/scss to public/stylesheets

npm run build-css

Open localhost:3000/home in the browser.