weblet-kit
v2.2.0
Published
Weblet-Kit is a lightweight JavaScript utility toolkit providing handy validators and everyday helpers. Modular, dependency-free, and developer-first — perfect for web developers who want ready-to-use snippets without heavy frameworks.
Maintainers
Readme
WEBLET-KIT
Tiny tools, big impact.
A minimal JavaScript utility toolkit that gives you the essentials — fast, modular, and zero-dependency.
🌟 Why Weblet-Kit?
| 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. |
🚀 Quick Start
Install
npm install weblet-kitor load from CDN:
import webletKit, {
utils,
validators,
} from "https://unpkg.com/[email protected]/dist/weblet-kit.min.js";⚡ Example
import { validators, utils } from "weblet-kit";
console.log(validators.isEmail("[email protected]")); // true
const debounced = utils.debounce(() => console.log("Ping!"), 300);
debounced();💡 Contributing
We love contributions! See the Contributing Guide for setup and workflow.
Open issues or PRs on the 👉 GitHub Issues page
⚖️ License
Released under the MIT License.
