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

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.

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
```

[![Build Status](https://travis-ci.org/aduth/marionette-require-starter.png?branch=master)](https://travis-ci.org/aduth/marionette-require-starter)