Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/flpvsk/js-project-template

template with jquery, require.js, buster, bootstrap and some html5 boilerplate
https://github.com/flpvsk/js-project-template

Last synced: about 1 month ago
JSON representation

template with jquery, require.js, buster, bootstrap and some html5 boilerplate

Awesome Lists containing this project

README

        

### Requirements

* [node.js](http://nodejs.org/)
* [npm](http://npmjs.org/)

And others, listed in `package.json`. In order to install them, run in `client_app` folder:

npm install .

### Tests

For testing, use [buster.js](http://busterjs.org/) framework. It should be installed globally, in order to work properly.

npm install -g buster # use sudo, if needed

To run tests in console, first start *buster* server:

buster server

Then open your browser (or even several ones) and point them to url `localhost:1111`. After browser has been captured by buster server, run:

buster test

### Code standart
[http://nodeguide.com/style.html](nodejs code standart)

### Dev server
Dev server watches `src` dir and recompiles scripts on every change. It also serves all content from `public` dir on `localhost:8000`. To run it, do:

./server