README-ko_kr.md
es-toolkit은 높은 성능과 작은 번들 사이즈, 강력한 타입을 자랑하는 현대적인 JavaScript 유틸리티 라이브러리예요.
// 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]]
es-toolkit은 Claude Code, Cursor, Copilot 같은 AI 코딩 도구에서 사용할 수 있는 Agent Skills를 제공해요.
npx skills add toss/es-toolkit
Claude Code를 사용하는 경우, 플러그인 마켓플레이스를 통해 설치할 수도 있어요:
/plugin marketplace add toss/es-toolkit
/plugin install es-toolkit@es-toolkit-plugin
자세한 내용은 AI 활용 가이드를 참고하세요.
커뮤니티에 있는 모든 분들에게 기여를 환영해요. 아래에 작성되어 있는 기여 가이드를 확인하세요.
MIT © Viva Republica, Inc. 자세한 내용은 LICENSE를 참고하세요.
<a title="Toss" href="https://toss.im"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://static.toss.im/logos/png/4x/logo-toss-reverse.png"> </picture> </a>