Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/toss/es-toolkit
A modern JavaScript utility library that's 2-3 times faster and up to 97% smaller—a major upgrade to lodash.
https://github.com/toss/es-toolkit
Last synced: about 21 hours ago
JSON representation
A modern JavaScript utility library that's 2-3 times faster and up to 97% smaller—a major upgrade to lodash.
- Host: GitHub
- URL: https://github.com/toss/es-toolkit
- Owner: toss
- License: other
- Created: 2024-04-25T11:56:31.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-10-24T13:13:22.000Z (about 2 months ago)
- Last Synced: 2024-10-24T21:28:38.724Z (about 2 months ago)
- Language: TypeScript
- Homepage: https://es-toolkit.slash.page
- Size: 4.72 MB
- Stars: 6,596
- Watchers: 26
- Forks: 297
- Open Issues: 55
-
Metadata Files:
- Readme: README-ja_jp.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
- my-awesome-list - es-toolkit - 3 times faster and up to 97% smaller—a major upgrade to lodash. | toss | 7263 | (TypeScript)
- awesome - toss/es-toolkit - A modern JavaScript utility library that's 2-3 times faster and up to 97% smaller—a major upgrade to lodash. (TypeScript)
- awesome-typesafe - toss/es-toolkit - A modern JavaScript utility library that's 2-3 times faster and up to 97% smaller—a major upgrade to lodash. (**1. Libraries** / Functional Programming)
README
![](./docs/public/og.png)
# es-toolkit · [![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/toss/slash/blob/main/LICENSE) [![codecov](https://codecov.io/gh/toss/es-toolkit/graph/badge.svg?token=8N5S3AR3C7)](https://codecov.io/gh/toss/es-toolkit) [![NPM badge](https://img.shields.io/npm/v/es-toolkit?logo=npm)](https://www.npmjs.com/package/es-toolkit) [![JSR badge](https://jsr.io/badges/@es-toolkit/es-toolkit)](https://jsr.io/@es-toolkit/es-toolkit) [![Discord Badge](https://discord.com/api/guilds/1281071127052943361/widget.png?style=shield)](https://discord.gg/vGXbVjP2nY)
[English](https://github.com/toss/es-toolkit/blob/main/README.md) | [한국어](https://github.com/toss/es-toolkit/blob/main/README-ko_kr.md) | [简体中文](https://github.com/toss/es-toolkit/blob/main/README-zh_hans.md) | 日本語
es-toolkitは、最先端のJavaScriptユーティリティライブラリであり、高性能で小さなバンドルサイズ、強力な型注釈を提供します。
- es-toolkitは、[debounce](https://es-toolkit.slash.page/reference/function/debounce.html)、[delay](https://es-toolkit.slash.page/reference/promise/delay.html)、[chunk](https://es-toolkit.slash.page/reference/array/chunk.html)、[sum](https://es-toolkit.slash.page/reference/math/sum.html)、[pick](https://es-toolkit.slash.page/reference/object/pick.html)など、日常的に使用するさまざまなユーティリティ関数を最新の実装で提供します。
- パフォーマンスを重視して設計されており、es-toolkitは最新のJavaScript環境で[2-3倍の性能向上](https://es-toolkit.slash.page/performance.html)を実現します。
- es-toolkitはツリーシェイキングをサポートしており、他のライブラリと比較してJavaScriptコードを最大[97%削減](https://es-toolkit.slash.page/bundle-size.html)します。
- es-toolkitには組み込みのTypeScriptサポートが含まれており、直感的で堅牢な型を提供します。また、[isNotNil](https://es-toolkit.slash.page/reference/predicate/isNotNil.html)などの便利な型ガードも提供します。
- es-toolkitは、[Storybook](https://github.com/storybookjs/storybook/blob/9d862798d666678cc4822e857c00bbd744169ced/code/core/package.json#L358)や[ink](https://github.com/vadimdemedes/ink/blob/2090ad9779be59dea71d173eb49785b7bd4495d0/package.json#L55)など、よく使われるオープンソースライブラリで利用されています。
- es-toolkitは100%のテストカバレッジを持ち、信頼性と堅牢性を確保しています。## 例
```tsx
// jsrでは '@es-toolkit/es-toolkit' からインポートします。
import { chunk, debounce } from 'es-toolkit';const debouncedLog = debounce(message => {
console.log(message);
}, 300);// この呼び出しはデバウンスされます
debouncedLog('Hello, world!');const array = [1, 2, 3, 4, 5, 6];
const chunkedArray = chunk(array, 2);console.log(chunkedArray);
// 出力: [[1, 2], [3, 4], [5, 6]]
```## 貢献
コミュニティの皆さんからの貢献を歓迎します。詳細な貢献ガイドについては、以下をお読みください。
[CONTRIBUTING](https://github.com/toss/es-toolkit/blob/main/.github/CONTRIBUTING.md)
## ライセンス
MIT © Viva Republica, Inc. 詳細については[LICENSE](./LICENSE)をご覧ください。