Ember-cli: Getting Started With the Awesome
ember-cli 1 is a command line application that creates a separate project for your ember project. It is crafted by the Ember core team and extended by the Ember community . So: your backend API will be in 1 app/repo, and ember in a seperate one. This is a good thing for all sorts of reasons, but mostly: Your Front End App has grown up.
So excited by how Ember CLI is
shaping up. This is the story I've been wanting to tell about developing web
apps for the last 3 years.
— Tom Dale (@tomdale) October 18,
2014
What does ember-cli give you over other-tool.js?
- ember-cli includes the ability to build SCSS, Coffee-Script, include bower assets, and test your code. It will generate ember components for you in the same style as “rails generate model Customer”
- ember-cli can run all of your front-end tests. Fastly. Without hair-pulling.
- ember-cli can build the code for you (into a dist) folder, which can be deployed, or copied to a Rails public folder.
- ember-cli can also be deployed directly to Heroku, or used to build Cordova applications on iOS and Android.
** Tl;dr ember-cli is the awesome **
However: There is a confusion generating getting-started period where you might be confused by some of the conventions. (confession: I had to fiddle around to figure stuff out. Hopefully, you dear reader won’t have to do so).
ES6 Modules
If you’ve used ember before in Rails or Lineman3, moving to ember-cli could confuse you a bit — ember-cli uses ES6 modules, which you may have never seen before.
Prior to ember-cli, you may have declared your ember data models in this fashion:
** app/js/models/user.js **
Things to notice: in this file, we assume that Ember and Ember Data have already been loaded, and are in the global namespace ready for use.
ES6, on the other hand, requires you to be explicit about what you want to use — you import namespaces, name them what you want, and then use them.
** app/models/recipe.js **
We import the “DS” from ember-data, and it exports the object we define. What we notice:
- We never say this is a “Recipe”. Instead, the ember-cli “Resolver” knows that this is from recipe.js and therefor is a “Recipe”.
- The “export default” is important. Without it, nothing happens.
- It’s extremely important to name files correctly. Extreme Extremeness.
Getting Sass Working
Coming from Rails, the first thing I want to do is work with Sass. I found a couple of loops you had to jump through to get your .scss working again.
Step 1: install brocolli-sass and broccoli-merge-trees
If you’re new to npm, the “–save-dev” means “use only in this project”.
Step 2: edit Brocfile.js
Make it look like this:
This will create an asset-pipeline of sorts for you. Broccoli will compile any sass files in app/styles and vendor/css, and compile app.scss into “assets/app.css”.
Generally, this is what you want.
Step 3: Customize your sass
Move app/styles/app.css to app/styles/app.scss. You can now use scss all you like:
(We’ll use Bourbon in a future article)
Creating Routes
This will create app/routes/index.js (and create “routes” directory for you, cool). We’ll change the default to the standard ember starter:
And we’ll create a template to show.
This created app/templates/index.hbs. We’ll change its contents to:
Running Locally
If things are good to go, you’ll see the colors listed out on the screen. WOAH, the power.
Building for Deploying
This creates a “dist” directory with “index.html” and other static assets. We can deploy this to S3, or anywhere else. TOTES AWESOME.
Deploying to Heroku
If we run into CORS problems, or generally want to use Heroku, there’s a build pack for maximum awesome.
At this point, you have an ember app, build with ember-cli, hosted on Heroku.
We can set an API Proxy to get around CORS problems:
heroku config:set API_URL=http://api.example.com/
If you want to checkout a repo where this is hooked up 3
Where to go from here?
- Check out ember-cli-cordova https://github.com/poetic/ember-cli-cordova
- Watch Jake from Poetic Systems’s Houston.JS talk on using this to build mobile apps
-
My talk on building hybrid apps with ember is up! http://t.co/iKOB75Dgex Presented for @HoustonJS at @PoeticSystems
— Jake Craige (@jakecraige) October 3, 2014 - Add Ember-Data and use the ember-cli-buildpack’s API proxy 5
- Have serious FUN.
Next Articles in this series
- How to Bourbon/Neat/Bitters your ember-cli
- How to use environment variables in ember-cli and on heroku
- How to customize the JSON you receive from someone’s API and play nicely with ember-data
(seriously, check out emberaddons.com), ↩