Adapted for EmberFest from github.com/201-created/emberconf-schedule-2018
This tech demo is brought to you via the EmberFest sponsorship from 201 Created. Like this demo project and want to explore these cutting edge features with your own codebase? 201 Created has worked on dozens of apps with Fortune 50 companies and Y-combinator startups. Visit 201-created.com or email hello@201-created.com to talk with us.
-
- Perfect 💯 Lighthouse score
- Save to mobile home screen for fullscreen app experience
- Offline cache fallback via service worker
-
Module Unification File Layout
- File system migrated with ember-module-migrator
- Review the project's file structure organized within
srcdirectory rather thanapp - Uses local component lookup (components found in context-aware
-componentdirectories)
-
What is Rehydration?
The rehydration feature means that the Glimmer VM can take a DOM tree created using Server Side Rendering (SSR) and use it as the starting point for the append pass. This reuses the rendering work already done on the server, allowing Ember applications to start with the existing DOM rather than throwing it away and generating it all over again client-side.
-
In this application we are running a Canary build of Ember which will eventually become 3.2. In 3.2 of Ember.js es5 getters are automatically installed for computed properties onto the Object prototype. So you can use
this.myComputedPropertywithout reaching for thegethelper -
No jQuery!
You will need the following things properly installed on your computer.
git clone git@github.com:201-created/emberfest-schedule-2018.gitthis repositorycd emberfest-schedule-2018yarn install
ember serve- Visit your app at http://localhost:4200.
- Visit your tests at http://localhost:4200/tests.
Make use of the many generators for code, try ember help generate for more details
ember testember test --server
yarn lint:jsyarn lint:js --fix
ember build(development)ember build --environment production(production)
Deployment to Heroku occurs automatically for the master branch.