Kiwi.js
Fast TypeScript implementation of the Cassowary constraint solving algorithm 🖖
Install / Use
/learn @IjzerenHein/Kiwi.jsREADME
THIS REPOSITORY IS NO LONGER MAINTAINED
Looking for an alternative? Please have a look at lume/kiwi.
If you are interested in maintaining this repository (and taking ownership of it), please reach out to me here.
kiwi.js
Kiwi.js is a fast TypeScript implementation of the Cassowary constraint solving algorithm, based on the seminal Cassowary paper. Originally created by Chris Colbert, it was redesigned from the ground up to be lightweight, fast and easy to maintain. View the benchmarks to see how it compares to Cassowary.js.
Index
Getting started
Install using NPM:
npm install kiwi.js
The following example creates a solver which automatically calculates the width:
import * as kiwi from 'kiwi.js';
import { equal } from 'assert';
// Create a solver
var solver = new kiwi.Solver();
// Create edit variables
var left = new kiwi.Variable();
var width = new kiwi.Variable();
solver.addEditVariable(left, kiwi.Strength.strong);
solver.addEditVariable(width, kiwi.Strength.strong);
solver.suggestValue(left, 100);
solver.suggestValue(width, 400);
// Create and add a constraint
var right = new kiwi.Variable();
solver.addConstraint(new kiwi.Constraint(new kiwi.Expression([-1, right], left, width), kiwi.Operator.Eq));
// Solve the constraints
solver.updateVariables();
equal(right.value(), 500);
Documentation
Benchmarks
To run the benchmark in the browser, just visit this page.
To run the benchmark locally using nodejs, clone or download this repository and execute the following steps:
npm install
npm run bench
Tests
To run the tests in the browser, just visit this page.
To run the tests locally using nodejs, clone or download this repository and execute the following steps:
npm install
npm run build && npm run test
Contribute
If you like this project and want to support it, show some love and give it a star.
Related Skills
node-connect
336.2kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
82.8kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
Writing Hookify Rules
82.8kThis skill should be used when the user asks to "create a hookify rule", "write a hook rule", "configure hookify", "add a hookify rule", or needs guidance on hookify rule syntax and patterns.
openai-whisper-api
336.2kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
