Skip to content

Installation

Install @t-req/core using your preferred package manager.

Terminal window
# npm
npm install @t-req/core
# bun
bun add @t-req/core
# yarn
yarn add @t-req/core
# pnpm
pnpm add @t-req/core
  • Node.js >=18
  • Bun >=1.0

Create a simple test file to verify the installation:

import { createClient } from '@t-req/core';
const client = createClient();
// If this compiles without errors, you're ready to go!
console.log('@t-req/core installed successfully!');

Now that @t-req/core is installed, head to the Quick Start guide to create and run your first request.