Home

Awesome

choo-resume

choo-resume + hot-rld = hot app reload in choo 🔥

For choo v3 use v1.x, for choo v4 use v2.x, v3.x, for choo v5 use v5.x+.

Usage

const resume = require('choo-resume')

// Basic usage
const appRoot = document.getElementById('app-root')
if (appRoot) appRoot.parentNode.removeChild(appRoot)

const tree = resume(app).start()
document.body.appendChild(tree)

// Rehydration usage

// Ensure your root element has a data attribute like
// the following when rendered from the server:
//   <div data-server-rendered></div>
const appRoot = document.getElementById('app-root')
const rehydrating = !!appRoot.dataset.serverRendered
const tree = app.start()
if (rehydrating) {
  app.mount('#app-root');
} else {
  appRoot.parentNode.removeChild(appRoot)
  document.body.appendChild(tree)
}

Installation

$ npm install --save choo-resume

or

$ yarn add choo-resume

License

MIT