Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@pauljoey
pauljoey / es6_toolkit.md
Last active March 22, 2017 13:11
Bullet points for getting started with ES6+

Migrating web project to ES6+

  • Keep your old code exactly as-is.
  • Keep writing ES5.
  • Add JSPM (+Babel +SystemJS) to your project
  • Skip using JSPM for dependency management for now. Stick to what you're already doing.
  • Get the tiniest possible ES6+ snippet working alongside your existing code
  • Begin using ES6 modules to wire up new components that you write
  • Slowly introduce new ES6+ syntax that you are comfortable with, verify the ES5 output
  • Expand ES6+ usage