jsx-to-dom

1.1.0 • Public • Published

DOM Renderer for JSX-IR

Installation

npm install jsx-to-dom

Usage

Transpiling

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

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

Runtime

import { render } from 'jsx-to-dom';
 
var element = render(<div className="hello">Hello World</div>);
 
container.appendChild(element);

License

MIT

/jsx-to-dom/

    Package Sidebar

    Install

    npm i jsx-to-dom

    Weekly Downloads

    2

    Version

    1.1.0

    License

    MIT

    Last publish

    Collaborators

    • nekr