Installation
Utilify can be easily installed using the main package managers, with full support for JSR — the official Deno module registry, also compatible with Node.js and other modern runtimes.
- npm
- yarn
- pnpm
- JSR (Deno)
Choose the package manager you use in your project and follow one of the options below to install the main package:
Main Package Installation
If you want access to all Utilify features at once, simply install the @utilify/core package. Utilify is distributed as a single package containing the entire utility collection. This approach simplifies installation, avoids fragmented dependencies, and improves your project's maintainability.
npm install @utilify/core
yarn add @utilify/core
pnpm add @utilify/core
deno add jsr:@utilify/core
About JSR
JSR is the official Deno module registry. It allows you to install modern packages with a single command, even in environments like Node.js, Bun, or npm-compatible runtimes.
JSR Usage Examples:
deno add jsr:@utilify/core
npx jsr add @utilify/core
bunx jsr add @utilify/core
pnpm add jsr:@utilify/core
yarn add jsr:@utilify/core
✅ After installation, you can import any function directly:
import { after, isString } from "@utilify/core";
The package is compatible with ES modules (ESM) and can be used in both TypeScript and JavaScript projects.