es-toolkit: A Modern, High-Performance JavaScript Utility Library
This repository profile is provided by osrepos.com, an open source repository discovery platform.

Summary
es-toolkit is a cutting-edge JavaScript utility library designed for modern web development. It offers significant performance improvements, being 2-3 times faster and up to 97% smaller than traditional alternatives like lodash. This library provides a comprehensive set of utility functions with strong type annotations and full TypeScript support.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
es-toolkit is a state-of-the-art, high-performance JavaScript utility library designed for modern web development. It offers a comprehensive set of everyday utility functions, including debounce, delay, chunk, sum, and pick, all with modern implementations. This library stands out for its exceptional performance, achieving 2-3 times better speeds in modern JavaScript environments, and its incredibly small bundle size, reducing JavaScript code by up to 97% compared to other libraries, thanks to built-in tree-shaking.
Installation
To integrate es-toolkit into your project, you can use npm, yarn, or pnpm:
npm install es-toolkit
# or
yarn add es-toolkit
# or
pnpm add es-toolkit
Examples
Here are a couple of examples demonstrating how to use debounce and chunk from es-toolkit:
import { chunk, debounce } from 'es-toolkit';
const debouncedLog = debounce(message => {
console.log(message);
}, 300);
// This call will be debounced
debouncedLog('Hello, world!');
const array = [1, 2, 3, 4, 5, 6];
const chunkedArray = chunk(array, 2);
console.log(chunkedArray);
// Output: [[1, 2], [3, 4], [5, 6]]
Why Use es-toolkit?
es-toolkit offers compelling advantages for developers seeking efficient and reliable utility functions:
- Superior Performance: Experience 2-3 times faster execution in modern JavaScript environments.
- Minimal Bundle Size: Benefit from up to 97% smaller JavaScript code, with full tree-shaking support out of the box.
- Robust TypeScript Support: Enjoy built-in, straightforward, and powerful type annotations, including useful type guards like
isNotNil. - Seamless Lodash Compatibility: Easily migrate existing projects with a complete compatibility layer available as es-toolkit/compat.
- Battle-Tested Reliability: Trusted by popular open-source projects such as Storybook, Recharts, ink, and CKEditor, and backed by 100% test coverage.
Links
Explore es-toolkit further through these official resources:
Related repositories
Similar repositories that may be relevant next.

FreeLLMAPI: Stack 16 Free LLM Tiers for 1.7 Billion Tokens/Month
June 27, 2026
FreeLLMAPI is an OpenAI-compatible proxy that aggregates the free tiers of 16 LLM providers, offering access to approximately 1.7 billion tokens per month. It simplifies access to diverse models through a single endpoint, featuring smart routing, automatic failover, and encrypted key storage. This powerful tool is designed for personal experimentation, allowing developers to leverage multiple free LLM resources efficiently.

Voicebox: The Open-Source AI Voice Studio for Cloning and Dictation
June 25, 2026
Voicebox is an innovative open-source AI voice studio that allows users to clone voices, generate speech in multiple languages, and dictate into any application. It provides a comprehensive, local-first voice I/O stack, offering a powerful alternative to cloud-based solutions. This tool ensures complete privacy and control over your voice data, running entirely on your local machine.

EasyWhisperUI: A Cross-Platform Desktop App for Whisper Model Transcription
June 22, 2026
EasyWhisperUI is a fast, local desktop application designed for transcribing audio and video using the Whisper model. It offers GPU acceleration across Windows, macOS, and Linux, providing a user-friendly interface for various transcription tasks. The application supports features like live transcription, batch processing, and translation, making it a versatile tool for media processing.

Dexter: An Autonomous Agent for Deep Financial Research
June 22, 2026
Dexter is an autonomous financial research agent designed to think, plan, and learn while performing analysis. It leverages task planning, self-reflection, and real-time market data to tackle complex financial questions. This project provides a powerful tool for in-depth financial exploration, emphasizing its educational and informational purposes.
Source repository
Open the original repository on GitHub.