Skip to content

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.

bash
npm install @utilify/core
bash
yarn add @utilify/core
bash
pnpm add @utilify/core
bash
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:

bash
deno add jsr:@utilify/core
bash
npx jsr add @utilify/core
bash
bunx jsr add @utilify/core
bash
pnpm add jsr:@utilify/core
bash
yarn add jsr:@utilify/core

✅ After installation, you can import any function directly:

ts
import { after, isString } from "@utilify/core";

The package is compatible with ES modules (ESM) and can be used in both TypeScript and JavaScript projects.


Released under the MIT License.