jsx-to-idom

1.1.1 • Public • Published

Build Status

Incremental DOM Renderer for JSX-IR

Installation

npm install jsx-to-idom

Note: do not forget to install "incremental-dom" manually since from NPM 3 peer dependencies won't be installed automatically

Usage

Transpiling

babel.transform(code, {
  plugins: ['jsx-to-idom/babel-plugin'],
  blacklist: ['react']
});

or any other way described here, just pass `'jsx-to-idom/babel-plugin'`` as a plugin name.

Runtime

import { render } from 'jsx-to-idom';
import { patch } from 'incremental-dom'
 
patch(container, () => {
  render(<div className="hello">Hello World</div>);
});
 

License

MIT

/jsx-to-idom/

    Package Sidebar

    Install

    npm i jsx-to-idom

    Weekly Downloads

    1

    Version

    1.1.1

    License

    MIT

    Last publish

    Collaborators

    • nekr