kpfefferle / emberconf-schedule-2018

EmberConf 2018 Schedule

Home Page:https://schedule.emberconf.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EmberConf 2018 Schedule

TravisCi

This tech demo is brought to you via the EmberConf 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.

Features

  • Progressive Web App

    • 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 src directory rather than app
    • Uses local component lookup (components found in context-aware -component directories)

    Be sure to watch "Who Moved My Cheese" by Mathew Beale at EmberConf on 3/13 at 3:00 to see more about this feature.

  • Fastboot Rehydration

    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.

  • Separate WASM Version Also Available

    • Deployed separately because Mobile Safari has temporarily dropped WASM support ☹️

    What we mean by a WASM version is that the version at schedule-wasm.emberconf.com has a version of Ember.js compiled with a version of glimmer-vm that utilizes Web Assembly transpiled from Rust code to do much of the low-level (super-duper low level) heavy lifting.

  • ES5 Getters

    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.myComputedProperty without reaching for the get helper

  • No jQuery!

Prerequisites

You will need the following things properly installed on your computer.

Installation

  • git clone git@github.com:201-created/emberconf-schedule-2018.git this repository
  • cd emberconf-schedule-2018
  • yarn install

Running / Development

Code Generators

Make use of the many generators for code, try ember help generate for more details

Running Tests

  • ember test
  • ember test --server

Linting

  • yarn lint:js
  • yarn lint:js --fix

Building

  • ember build (development)
  • ember build --environment production (production)

Deploying

Deployment to Heroku occurs automatically for the master branch.

Updating Source Data

A Ruby rake task is included in this project's Rakefile that will update the contents of app/lib/data.js:

bundle install
bundle exec rake

Further Reading / Useful Links

About

EmberConf 2018 Schedule

https://schedule.emberconf.com


Languages

Language:JavaScript 87.0%Language:HTML 9.1%Language:CSS 2.4%Language:Ruby 1.4%