https://github.com/aduth/marionette-require-starter
A bare-bones starter template using Marionette and RequireJS.
https://github.com/aduth/marionette-require-starter
Last synced: 9 months ago
JSON representation
A bare-bones starter template using Marionette and RequireJS.
- Host: GitHub
- URL: https://github.com/aduth/marionette-require-starter
- Owner: aduth
- License: mit
- Created: 2013-11-18T03:17:12.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2017-01-25T13:21:01.000Z (over 9 years ago)
- Last Synced: 2025-03-13T22:35:06.646Z (about 1 year ago)
- Language: JavaScript
- Size: 77.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# marionette-require-starter
A bare-bones starter template using [Marionette](http://marionettejs.com/) and [RequireJS](http://requirejs.org/). Includes minimal [Bower](http://bower.io/), [Grunt](http://gruntjs.com/), and [Travis CI](http://about.travis-ci.org/) configurations. [Mocha](http://mochajs.org/) (with [Chai](http://chaijs.com/)) tests included, but feel free to replace with your preferred test framework.
## Requirements:
* [Node.js](http://nodejs.org/download/)
* [Grunt](http://gruntjs.com/) (`npm install -g grunt-cli`)
* [Bower](http://bower.io/) (`npm install -g bower`)
## Installation:
```bash
$ git clone git://github.com/aduth/marionette-require-starter ./my-app
$ cd my-app
$ npm install
$ bower install
```
## Running
Start the application using the npm `start` command:
```bash
$ npm start
```
You can view the application in your browser by navigating to [http://localhost:3000/](http://localhost:3000/)
## Testing
Test your application using the npm `test` command:
```bash
$ npm test
```
[](https://travis-ci.org/aduth/marionette-require-starter)