@vielzeug/buildit
A library of ready-made web components, accessible, themeable, built on craftit.
Each tool does one thing well. All of them play nicely together. TypeScript-first, zero dependencies.
npm install @vielzeug/toolkitpnpm add @vielzeug/toolkityarn add @vielzeug/toolkitimport { chunk, debounce, currency } from '@vielzeug/toolkit';
// Utilities that just work
const batches = chunk([1, 2, 3, 4, 5], 2);
const search = debounce((query) => api.search(query), 300);
const price = currency({ amount: 123456n, currency: 'USD' }); // "$1,234.56"Have questions? Found a bug? Want to contribute?
Released under the MIT License. Vielzeug Contributors.