es-toolkit/docs/installation.md
Minsoo Kim cf65b2c601
style(*): Setup prettier and apply formatting (#24)
* chore: add prettierrc

* chore: apply format with prettier config

* chore: eslint error fix
2024-06-04 17:19:26 +09:00

745 B

description prev next
How to install es-toolkit
text link
Introduction to es-toolkit ./intro.md
text link
Impact on Bundle Size ./bundle-size

Installation

es-toolkit is available on npm for Node.js, Deno, and Bun.

Node.js

es-toolkit supports Node.js 18 or later. Install es-toolkit with the following command:

npm install es-toolkit
yarn add es-toolkit
pnpm install es-toolkit

Deno

es-toolkit is also available on npm for Deno. Use es-toolkit with the npm: specifier:

import { chunk } from 'npm:es-toolkit@1.0.0';

Bun

es-toolkit is also available on Bun. You can install it via the following command:

bun add es-toolkit