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
Debounce
Debounces data like user input or events that can occur in a burst.
Code Sample:
import debounce from 'debounce.js'
input.addEventListener("change", debounce(event => update(input.value)))
Read More