create-es-react-app
is acreate-react-app
like template demonstrating how far you can get creating progressive web apps (using react) with no build step. It takes advantage of static and dynamic imports which enables you to break up your app into small reusable ES modules that are compiled for you by the browser at run time.
TIL: You can directly import ES modules from unpkg:
import { React, ReactDOM } from 'https://unpkg.com/es-react@16.8.30/index.js';
import htm from 'https://unpkg.com/htm@2.1.1/dist/htm.mjs'
import csz from 'https://unpkg.com/csz@0.1.2/index.js'
🤔 ES Modules? This video by Heydon Pickering has got you covered.
create-es-react-app
Source (GitHub) →create-es-react-app
demo →