@spicyjs/core
v1.1.8
Published
SpicyJS Core is a tiny, buildless element creation and modification library with a VanillaJS mental model
Downloads
12
Maintainers
Readme
SpicyJS
SpicyJS Core is a tiny, buildless element creation and modification library with a VanillaJS mental model
Why
It seems like our options for building dynamic apps are a whole lot of document.createElement, or frameworks like React, Vue, and Svelte. If you've ever tried to build a 'VanillaJS' application, you've probably become dismayed at the amount of code required for even simple element creation. SpicyJS is a <1kb library that makes creation and modification of DOM elements a breeze. It's a little spicier than Vanilla JS, but not too far off.
Installation
npm i @spicyjs/core
Usage
import spicy from "@spicyjs/core";
const { div, button, h2, span } = spicy;
//the default export also works as a function: spicy('header', {...options}, 'this is a header'), etc
let display: HTMLSpanElement | null = null;
let count = 0;
export const counter = () =>
div(
{ className: "tw-flex tw-flex-col tw-gap-3" },
h2("Counter"),
(display = span("count: 0")),
button("increment", {
type: "button",
click: () => (display.textContent = `count: ${++count}`),
})
);
document.body.append(counter());
the counter function creates the following DOM structure when invoked:
/**
<div class="tw-flex tw-flex-col tw-gap-3">
<h2>Counter</h2>
<span>count: 0</span>
<button>increment</button>
</div>
*/
Any element can be created, even custom components. Custom elements can be typed by updating the HTMLTagNameMap type.
import { TestComponent } from "./TestComponent";
declare global {
interface HTMLElementTagNameMap {
"test-component": TestComponent;
}
}
Now we can get this element too with
import spicy from "@spicyjs/core";
const { "test-component": TestComponent, marquee } = spicy;
export const EpicComponent = () => {
return TestComponent({ someProp: 33 }, marquee());
};
Arguments passed to the element functions can be another HTML element, an array of HTMLElements, a Text Node, strings, or an object.
Elements or an array of elements will be appended to the created element.
Strings will be appended as Text Nodes.
An object takes the form of {key: boolean|string|number|function}.
- If the value is a function, the function will be added as an event handler for the event matching the key. E.g. 'click', 'mousemove', etc. Custom Events can be matched as well.
- If the key is a prop on the element, the associated value will be added as a prop.
- Otherwise, the key/value pair will be added as an attribute
The default object is also a function that can be used to update existing elements with the same params, though the first becomes the existing element.
Another, more complex example:
import spicy from "@spicyjs/core";
const { div, ul, li, input } = spicy;
const menu = [
{ name: "Tea", price: "$3.00" },
{ name: "Coffee", price: "$4.00" },
];
let filter = "";
let list = null;
const createList = menu
.filter(({ name }) => name.includes(filter))
.map(({ name, price }) => li(`${name}: ${price}`));
const updateList = () => {
//this is not efficient, but gets the idea across
let newList = createList();
if (list) {
//illustrates how params are executed. First the html will be cleared, then the list appended
spicy(list, { innerHTML: "" }, newList);
//could also just do list.replaceWith(newList)
}
};
document.body.append(
input({ value: filter, placeholder: "Filter...", input: updateList }),
div((list = ul(createList())))
);
Reactivity
Coming Soon