Skip to content
This repository was archived by the owner on Mar 27, 2019. It is now read-only.

Getting started

Milan Iliev edited this page Dec 1, 2013 · 8 revisions

Using component in your app is easy.

Add a component.json for your application. It's like a package.json:

{
  "name": "example_app",
  "main": "app.js",
  "scripts": [
    "app.js"
  ],
  "styles": [
    "app.css"
  ]
  "dependencies": {
    "components/backbone": "~1.0"
  }
} 

Inside app.js:

  Backbone = require('backbone')
  // app code

Component recommends using Make for building your application.

Clone this wiki locally