Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/flpvsk/js-project-template
- Owner: flpvsk
- Created: 2012-04-07T19:58:51.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2012-04-22T07:48:21.000Z (almost 13 years ago)
- Last Synced: 2024-04-14T20:21:11.347Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 617 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
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 serverThen 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