mnutt / ember-cli

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ember-cli Build Status

An ember command line utility.

Supports node 0.10.5 and npm 1.4.6.

Community

Warning

Although potentially exciting, this is still really a WIP, use at your own risk.

Why?

The ember-app-kit project has proved to be quite useful, we have learned lots, and it allowed us to iterate quickly while building real ambitious applications.

While it's initial incarnation is useful, it has several meta problems:

  1. It is not "simple" and appears daunting
  2. Because of inline configuration, the API surface area is massive
  3. #2 does not allow users to express the "what" just the "how", this prevents EAK from doing more of the heavy lifting itself
  4. [#2 #3] makes it quite tedious to upgrade

Rationale for #3

If we want to upgrade or swap in a faster build pipeline it would be a major pain currently. But with #3, in theory it should be minimal pain.

Guidelines

  • convention over configuration. (look to rails)
    • we should provide internal configuration/implementation to satisfy the 'what' with the how.
  • simple > easy
  • the current contents of tasks/* should reside in the ember executables library
  • the pipeline-related Broccoli configuration should also reside in the above mentioned library.

Usage

Getting Started

npm install -g ember-cli

ember new my-cool-app
cd my-cool-app
ember server

Current Commands

ember build <env-name>
ember server
ember init [app-name] [--dry-run] [--skip-npm-install]
ember new  [app-name]

Default Flags

You can provide default flags by creating a file in your project's root called .ember-cli. For example, say I have a file called .ember-cli with the contents:

--proxy-port 3000

Any time I run ember server it will always work as if I had run ember server --proxy-port 3000. This works with any flag for any command.

Developing

You may want to use npm link to make your local source directory a globally installed package. See npm-developers.

Running tests

Once:

npm test

On every file change:

npm run-script autotest

LESS, Sass, or Stylus

You can use LESS, Sass (scss only), or Stylus by installing the corresponding Broccoli package (broccoli-sass, broccoli-less-single or broccoli-stylus-single).

For example, to enable SCSS compilation:

npm install --save-dev broccoli-sass

Building will now compile app/styles/app.scss into app.css in your output.

CoffeeScript

You can also use CoffeeScript with ember-cli.

Install the broccoli-coffee package:

npm install --save-dev broccoli-coffee

Now CoffeeScript files will be complied.

Note that export and default are reserved words in CoffeeScript so they must be escaped:

`export default Router`

Contributing

Submit a pull request (code + tests) and make sure to add the change to CHANGELOG.md.

Ideas

  • executable (this project)

    ember
    ember new <app-name>
    ember help
    ember init  <app-name>
    ember build <env-name> [default: development] [optional: target path]
    ember server
      --autotest   [default: false]
      --port       [default: 4200]
      --host       [default: 0.0.0.0]
      --subscribe  [default:release, optional: (beta|canary)]
                     # on "start" of an app, it will prompt the user if the channel they
                     # subscribe to has an update.
                     # if an update occured. they are asked [yes, no] to try the update (using bower)
                     #   (what about other libs? ember-data or components or..)
      --env        [default: development] # allow previewing the various build envs.
      --app        [default: .]
    
    ember generate <generator-name> <options...> See https://github.com/cavneb/loom-generators-ember-appkit for available generators
    ember generate scaffold [...] # for resources
    
    ember addon # reserved for future use.
  • folder structure: (very similar to what we currently have)

    app/*            # like EAK today
    tasks/           # custom user tasks
    vendor/          # mostly for bower, some non-bower stuff will reside.
    tests/           # tests test config and test helpers.
    tmp/*            # created on demand, but scratch pad for EAK.
    Brocfile.js      # should contain a mechanism for default ember tasks to be loaded
                     # should be the place for users to define custom broccoli related things.
    package.json
    bower.json
    .gitignore
    .travis
    .jshintrc
  • configuration

    server.js                    # for adding additional connect middleware (like a proxy to the backend)
    Brocfile                     # default tasks will exist in "ember"
    tasks/                       # custom user tasks
  • detect .js, .coffee, .styl, .scss, .sass and use the appropriate filter, or throw with useful error.

    new Error('Tried compiling: `app.coffee` but CoffesScript is missing, to install please: `npm install coffee-script --save-dev`')
  • tasks (consider extracting them into broccoli-ember)

License

ember-cli is MIT Licensed.

About

License:MIT License


Languages

Language:JavaScript 100.0%Language:CSS 0.0%