/nativous

The library for rendering JSX directly to the DOM.

Primary LanguageTypeScriptGNU Lesser General Public License v3.0LGPL-3.0

Nativous

Nativous is the library for rendering JSX directly to the DOM.

The name Nativous is a combination of Native and -ous, and it is pronounced /naˈti.vous/.

Installation

npm install nativous

Examples

function Hello({
    name
}) {
    return <p>Hello, {name}!</p>
}
document.body.appendChild(<Hello name="Taylor" />);

This example will render "Hello, Taylor!" into body of the page.