Git Product home page Git Product logo

ember-app-kit's Introduction

Deprecated

this project has been deprecated in-favour of the ember-cli project:

Ember App Kit Build Status

Ember App Kit aims to be the foundation for ambitious web applications built with Ember. It will soon be replaced by an executable ember-cli which dramatically improves buildtimes (via broccoli) and provides sane-upgrade paths, feel free to check that project out. We intend to provide a sensible upgrade path.

This project has been extracted out of several real world applications and is actively used. Currently it covers the basics fairly well, but much still needs to be done. As we learn and as more contributors join in it continues to evolve. If you encounter any bugs, clunky features or missing documentation, just submit an issue and we'll respond ASAP.

At the very least, it helps setup your Ember.js applications directory structure.

We welcome ideas and experiments.

Getting Started

Features

  • Sane project structure
  • ES6 module transpiler support (easy, future-proof modules)
  • Module system-aware resolver (see Referencing views and Using Ember loaders)
  • Transparent project compilation & minification for easy deploys via Grunt
  • Package management via Bower
  • Optional support for CoffeeScript, SASS, LESS or Stylus
  • Testing via QUnit, Ember Testing and Testem (with examples)
  • Linting via JSHint (including module syntax)
  • Catch-all index.html for easy reloading of pushState router apps
  • Generators via Loom (to generate routes, controllers, etc.)

Migrating to Ember CLI

First, run npm install -g ember-cli to install Ember CLI. Now, on top of your existing EAK project, run ember init. Ember CLI will then migrate your project, showing you a diff of its overrides, and letting you edit them, as it goes along.

Ember Init Overrides

  • tests/.jshintrc
    • Let ember-cli overwrite this.
  • app/index.html
    • Since managing vendor assets is now handled via the Brocfile, you should let ember-cli overwrite this file.
  • app/app.js
    • Ember Configuration is now handled in the config directory.
  • app/router.js
    • The Router's location is now handled via environment configuration. Change this to ENV.locationType.
  • app/routes/index.js
    • This will attempt to replace your Index Route with a stub. Usually, you wont't want Ember CLI to override this file.
  • Brocfile.js
    • Move your dependencies from app/index.html into this file by calling app.import().
      • Example: app.import('vendor/ember-data/ember-data.js')
  • app/templates/application.hbs
    • This will attempt to replace your application template with a stub.
  • app/styles/app.css
    • Another stub.
  • tests/index.html
    • Let ember-cli add this file. Include any test depencies you had in `app/index.html'.
  • bower.json
  • package.json

Importing Ember and Ember Data

You now have to explicitly import Ember and Ember Data. Add import Ember from "ember and import DS from "ember-data" anywhere you declared a route, controller, model, and so on.

Migrating your API Stub

To work with the API stub again, run ember generate api-stub. This command generates a server directory where you can then migrate your routes accordingly.

You may also want to look into Ember CLI Rest API Blueprint which generates DS.RESTAdapter compatible express routes for a given Model.

Using The Express Server

The Express server has been exposed and now lives under this directory. You can now customize it any way you want, from enhancing the static file server, to simply using it as an API stub. You may even develop it further and turn it into a full-stack solution.

Cleanup

You can remove the Gruntfile and tasks folder since we won't be needing them anymore.

For now, you can check the app blueprint to see what other files you no longer need.

Troubleshooting

  • Ember CLI now picks up your app namespace. Change the import to reference the name of your project.

    • If you never changed your application namespace from the default appkit then running ember init will break any import statements you already have
  • Index Route doesn't exist

    • You may need to refresh your dependencies. Run rm -rf npm_modules && npm install && npm cache clean && bower install
  • Tests

    • Import tests/helpers/start-app into each acceptance test file.
      • import startApp from 'your-app/tests/helpers/start-app
    • resolver and startApp still live in test/helpers/ but module-for is now its own package.
    • If you were using ember-testing-httpRespond
      • This is now patched for 1.4+
      • Import it and its dependencies in your Brocfile by using app.import()

Special Thanks

Some ideas in ember-app-kit originated in work by Yapp Labs (@yapplabs) with McGraw-Hill Education Labs (@mhelabs) on yapplabs/glazier. Thanks to Yapp and MHE for supporting the Ember ecosystem!

License

Copyright 2013 by Stefan Penner and Ember App Kit Contributors, and licensed under the MIT License. See included LICENSE file for details.

ember-app-kit's People

Contributors

abuiles avatar asaf avatar bantic avatar bmac avatar c0urg3tt3 avatar claudeprecourt avatar codeofficer avatar dhilipsiva avatar ebryn avatar fsmanuel avatar ghedamat avatar ghempton avatar ianpetzer avatar jas avatar joefiorini avatar joliss avatar jrhe avatar kagemusha avatar lukemelia avatar machty avatar majorbreakfast avatar manoharank avatar mikegrassotti avatar mixonic avatar pangratz avatar rwjblue avatar sandalsoft avatar stefanpenner avatar thomasboyt avatar twokul avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.