lighterjs
Version:
A light weight and class based vanilla JS UI framework, with Component, Router, and State handling.
28 lines (20 loc) • 437 B
Markdown
# Lighter JS
A light weight and class based vanilla JS UI framework, with Component, Router, and State handling.
## Install
```
yarn add lighterjs -d
```
## Component example
```html
...
<body>
<div id="root"></div>
</body>
...
```
```javascript
import { Component } from 'lighterjs';
const appRoot = new Component({ attachId: 'root', text: 'Hello world!" });
appRoot.draw();
// Renders the text "Hello world!" on the page.
```