
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
Kofi is a JavaScript library (less than 400 lines of code) for building small frontend applications.
You can add kofi to your project using NPM or Yarn:
## Install using NPM
$ npm install --save kofi
## Install using Yarn
$ yarn add kofi
The kofi package can be used via modules:
<script type="module">
import kofi from "node_modules/kofi/index.js";
</script>
Creates a new VDOM Node element of the specified type, with the specified props and children.
kofi("div", {"align": "center"}); // --> <div align="center"></div>
kofi("div", {}, "Hello world"); // --> <div>Hello world</div>
This method does not return a DOM element. It returns a Virtual DOM Node element, which is a JSON representation of the DOM element.
To transform it into a real DOM element, use kofi.render.
The type argument can be either a tag name string (such as "div" or "a") or a function.
//Using a tag name
kofi("a", {"href": "https://google.es"}, "Click me!");
//Renders to: <a href="https://google.es">Click me!</a>
//Using a function
const Welcome = (props, children) => {
return kofi("span", {}, `Hello ${props.name}`);
};
kofi(Welcome, {"name": "Bob"});
//Renders to: <span>Hello Bob</span>
The props argument is an object with the data of the element. This can include HTML attributes, events listeners or custom properties that our functional element will use.
kofi("div", {
"className": "button",
"onclick": event => { /* Handle click event */ },
"id": "button1",
});
Use the className property to set the CSS class.
kofi("div", {"className": "button"}, "Button");
Attach a callback listener to an event.
kofi("div", {
"onclick": event => { /* Handle click event */ },
"onmousedown": event => { /* Handle mouse down event */ },
"onmouseup": event => { /* Handle mouse up event */ },
});
Use the ref property to save a reference of the element.
// 1. use kofi.ref to generate a reference variable
const inputRef = kofi.ref();
// 2. assign inputRef to an element
kofi("input", {ref: inputRef});
// 3. now you can access to the referenced element
console.log(inputRef.current.value);
You can provide an object with the style of the element. All styles attributes should be in camel-case format.
kofi("div", {
style: {
backgroundColor: "blue",
color: "white",
},
align: "center"
}, "Hello");
You can use the babel's plugin @babel/plugin-transform-react-jsx for creating DOM elements using JSX.
This example using JSX:
/** @jsx k */
import k from "kofi";
const user = (
<div>
<img className="avatar" src="/path/to/user.png" />
<span>Hello user</span>
</div>
);
Compiles to:
/** @jsx k */
const k = require("kofi");
const user = k("div", null,
k("img", {"className": "avatar", "src": "/path/to/user.png"}),
k("span", null, "Hello user"),
);
A JavaScript template tag that converts a JSX-like syntax into a VDOM tree, that you can use with kofi.render.
Example:
import k from "kofi";
const user = k.html`
<div align="center">
<img className="avatar" src="/path/to/user.png" />
<span>Hello user</span>
</div>
`;
Features:
<div align="${currentAlign}" />.<div>Hello ${name}</div>.<div onClick="${() => console.log("clicked")}"></div>.<div ...${extraProps}>.Returns a new object with a single key current initialized to null. Use this object to save a reference to rendered elements with kofi.render.
Renders a VDOM Node to the DOM.
const el = kofi("div", {}, "Hello world!");
kofi.render(el, document.getElementById("root"));
The first arguments is the VDOM Node to render, and the second argument is the parent DOM element. Returns a reference to the rendered DOM element.
Creates a special VDOM node that renders its child into a different DOM container. Portals allow you to place UI elements outside of their natural position in the DOM tree while keeping them inside the same VDOM tree.
This is useful for modals, tooltips, dropdowns, and any UI that must visually escape its parent container.
const App = (state) => {
return kofi.html`
<div>
<button onClick="${() => state.open = true}">
Open modal
</button>
${state.open ? kofi.portal(kofi.html`
<div class="modal">
<p>This is a modal</p>
<button onClick="${() => state.open = false}">
Close
</button>
</div>
`, document.querySelector("#modal-root")) : ""}
</div>
`;
};
kofi.render(App({ open: false }), document.body);
Notes:
child must be a single VDOM node (e.g. the result of kofi.html).parent must be a real DOM element.A simplified state management utility for handling object-based state. It provides an easy-to-use API for updating state and managing listeners for state changes.
// 1. initialize state with an object
const state = kofi.state({ count: 0 });
// 2. update state
state.setState(prevState => {
return { count: prevState.count + 1 };
});
// 3. register a listener for state changes
const listener = currentState => {
console.log("Count updated:", currentState.count);
};
state.on(listener);
// 4. remove the listener when no longer needed
state.off(listener);
This method returns an object containing the following methods:
state.getState()Returns the current state.
state.setState(partialState)Updates the current state by merging the partialState with the existing state. It also supports a function as argument that will be called with the current state object.
state.setState(prevState => {
// return a new object with the derivered state
});
After the state is updated, any registered listeners will be notified.
state.on(listener)Registers a listener function that will be called whenever the state is updated. The listener will be called with the current state.
state.off(listener)Unregisters a previously registered listener, preventing it from being called on future state updates.
Notes:
state.setState method returns a promise that will resolve when the state have been updated.A tiny event emitter designed for simple message passing between parts of your application. Create a new emitter instance by calling:
const emitter = kofi.emitter();
You can also use the constructor to register message listeners:
const emitter = kofi.emitter({
"foo": data => {
console.log(data);
},
});
emitter.emit("foo", "bar");
Each emitter instance is isolated and manages its own set of listeners. An emitter exposes three methods:
emitter.on(name, listener)Registers a listener for a given event name.
emitter.on("ready", () => {
console.log("The app is ready");
});
Listeners are stored in order of registration and are called synchronously.
emitter.off(name, listener)Removes a previously registered listener.
function onReady() {
console.log("Ready!");
};
emitter.on("ready", onReady);
emitter.off("ready", onReady);
If the listener is not registered, the call is ignored.
emitter.emit(name, data)Emits an event, calling all listeners registered under that name. Listeners receive the payload as their only argument.
emitter.emit("ready", { time: Date.now() });
Notes about the emitter implementation:
kofi.bus as an alias of kofi.emitter.Executes the provided function fn when the DOM becomes ready. This utility is similar to jQuery's ready method.
// Execute this function when the DOM is ready
kofi.ready(() => {
console.log("DOM is ready");
});
Added in
v0.14.0.
Directives are small declarative utilities that extend template behavior without adding weight to kofi’s core. They act as focused, opt‑in building blocks you can apply directly in your markup, keeping components expressive and intention‑driven.
Unlike generic helpers, directives are designed to feel native to kofi’s philosophy: minimal, predictable, and free of hidden mechanics. Each directive does one thing, does it well, and stays out of the rendering pipeline unless explicitly used.
All directives live under the kofi.directives namespace and can be used inside any kofi template literal.
Generates a unique, stable identifier for the lifetime of a component instance. Ideal for attributes like id, for, or any scenario where you need a collision‑free value without manually managing state.
The directive is evaluated once per template instance, ensuring the value remains consistent across renders.
import kofi from "kofi";
const MyInput = () => {
const uid = kofi.directives.uid();
return kofi.html`
<label for=${uid}>Name</label>
<input id=${uid} type="text" />
`;
};
A tiny utility for conditionally joining classNames. This function takes any number of arguments which can be an string, an object or an array. When providing an object, if the value associated with a given key is truthly, that key will be included in the generated classNames string. Non string values will be also ignored.
kofi.directives.classMap("foo", "bar"); // -> "foo bar"
kofi.directives.classMap("foo", null, false, "bar"); // -> "foo bar"
kofi.directives.classMap("foo", ["bar", null]); // -> "foo bar"
kofi.directives.classMap({
"foo": true,
"bar": false,
}); // -> "foo"
The styleMap directive is a function that takes an object as input, where keys represent CSS attribute names, and values represent corresponding attribute values. It returns a valid CSS style string based on the input object.
const styles = kofi.directives.styleMap({
fontSize: "16px",
color: "blue",
backgroundColor: "lightgray",
});
console.log(styles);
// Output: 'font-size: 16px; color: blue; background-color: lightgray;'
Renders one of the two templates based on the value of condition.
kofi is released under the MIT LICENSE.
FAQs
Tasty takeaway frontend library for creating small applications.
We found that kofi demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.