Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

breact

b-labo101MIT1.3.0

Browser react utility

browser, React.js

readme

breact

Build Status npm Version JS Standard

Browser react utility

Installation

$ npm install breact --save

Usage

'use strict'

import {mount, create, once} from 'breact'
import IndexComponent from '../components/index_component'

once('DOMContentLoaded', () => {
  let element = create(IndexComponent, {})
  mount('mount-root', element).then(() => {
    // The component is ready.
  })
})

Functions

Available functions

Signature Description
autobind(context) -> Auto bind methods
create(Component, props, children) -> Object Create an element
markup(Component, props, children) -> string Create static markup
mount(container, element) -> Promise Mount an element into dom
once(event, handler) Bind window event once
wrap(Base, spec) -> Object Wrap a element with higher order component

License

This software is released under the MIT License.