Turborepo

2.9.6 · active · verified Sat Apr 18

Turborepo is a high-performance build system designed for JavaScript and TypeScript monorepos. It optimizes builds and tests using caching and parallel execution. The current stable version is 2.9.6, with frequent canary releases pushing fixes and new features.

Common errors

Warnings

Install

Quickstart

This demonstrates how to initialize a new Turborepo monorepo, install dependencies, and run a development script across all workspaces.

npx create-turbo@latest my-monorepo
cd my-monorepo
pnpm install
npx turbo dev

view raw JSON →