DarkWiiPlayer/JS
A JavaScript micro-framework to make front-end easier
Note: This website is still work in progress!
Skooma.js
Skooma lets you generate DOM nodes in JavaScript.
Code Sample:
import {html} from 'skooma.js'
let div = html.div([
html.h1('Hello, World!'),
html.p('Here is some text', {class: ["class_a", "class_b"]})
html.button("Click Me!", { click: event => console.log(event) })
])
Read more