Tiny tools, big impact.
A minimal JavaScript utility toolkit that gives you the essentials — fast, modular, and zero-dependency.
| Feature | Description |
|---|---|
| ⚙️ Zero Dependencies | No external packages. Pure and fast. |
| 📦 Modular Utilities | Import only what you need. |
| ⚡ Optimized ESM Build | Lightning-fast and tree-shakable. |
| 🧑💻 Developer-Friendly API | Clean naming, intuitive methods. |
| 🛠️ Validators + Helpers | Ready-to-use functions for any project. |
| 🧩 Extendable Design | Add your own modules easily. |
| 📚 Well-Documented | Clear examples and explanations. |
npm install weblet-kitor load from CDN:
import webletKit, {
utils,
validators,
} from "https://unpkg.com/weblet-kit@2.2.0/dist/weblet-kit.min.js";import { validators, utils } from "weblet-kit";
console.log(validators.isEmail("test@example.com")); // true
const debounced = utils.debounce(() => console.log("Ping!"), 300);
debounced();We love contributions! See the Contributing Guide for setup and workflow.
Open issues or PRs on the 👉 GitHub Issues page
Released under the MIT License.
Made with ❤️ by Kaloka Radia Nanda
Weblet-Kit — Tiny tools, big impact..