Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.01 KB

README.md

File metadata and controls

39 lines (26 loc) · 1.01 KB

ember-repo-browser

An Ember application for searching and visualizing GitHub repos (WIP).

This is mostly an experimentation ground for various features.

  • Mimosa as the dev and build tool
  • RequireJS + ES6 modules via transpilation to AMD
    • files are kept separate for development; rebuilds only what's necessary
    • almond.js for optimized build
  • Module-aware resolver

Setup

Install Mimosa:

npm install -g mimosa

Run the App

  • mimosa watch -s (development)
  • mimosa watch -os or mimosa build (optimized build)

Launch app at http://localhost:3000/.

Run Tests

Install Testem:

npm install -g testem
  • testem (runs tests in development mode)
  • testem ci (runs tests in continuous integration mode)