OSS Tanbou

Turborepo — speed up monorepo tasks with dependency graphs and caching

About these scores

OSS scale score is an unbounded metric that log-compresses and weights Stars, Watchers, Forks, and Contributors. Discovery score is the current OSS scale score minus the score at discovery. Update pace is commits in the last 30 days, growth momentum is the OSS scale score difference within the recent observation window, and OSS health is a 0–100 rating based on available recency, Community Health, and release data.

Stars
31,120
Primary language
Rust
License
MIT
Repository last updated
Sep 20, 2026

Overview

Turborepo is a Rust build system that understands package and task graphs in JavaScript/TypeScript monorepos, schedules builds/tests/linting by dependency, and caches outputs locally or through a shared remote cache.

Features and best fit

Based on official documentation; not hands-on tested · Content checked:

Schedule work from package and task dependency graphs

Package dependencies and task relationships in turbo.json determine parallelism and execution order.

Sources: [3][5]

Avoid repeated work with local and remote caching

Task outputs can be restored from local cache, while remote caching shares artifacts between developers and CI pipelines.

Sources: [3][4]

For reducing CI/build time in growing JavaScript or TypeScript monorepos

It fits repositories where build, test, lint, codegen, and similar tasks span many packages and should run only where needed.

Sources: [3]

Define cache inputs and environment dependencies accurately

Incorrect task hashes can reuse outputs when a rebuild was actually required. Validate file/environment inputs and affected/filter behavior.

Sources: [3][5]

Official sources

  1. [1]vercel/turborepo repository(2026-09-21)
  2. [2]Turborepo README(2026-09-21)
  3. [3]Turborepo documentation(2026-09-21)
  4. [4]Turborepo remote caching documentation(2026-09-21)
  5. [5]Turborepo repository guidance(2026-09-21)
  6. [6]Turborepo MIT license(2026-09-21)
Supplemental curator note

Turborepo is not a package manager; it optimizes task execution and caching on top of an existing monorepo. Remote cache is optional, but sharing artifacts across teammates and CI can produce larger gains. Correct cache inputs and environment configuration in `turbo.json` are important to avoid reusing stale outputs.

Try it in 3 steps

  1. 1

    Get the source

    git clone --depth 1 https://github.com/vercel/turborepo.git
  2. 2

    Enter the repository

    cd turborepo
  3. 3

    Check the official steps

    Continue with the commands in the README Installation, Quick Start, or Getting Started section.

    find . -maxdepth 1 -iname 'README*' -exec sed -n '1,220p' {} \; -quit
Check the official README

Growth

Growth trends · Last 30 days

31,120 Stars

Trend data is still being collected.

Development activity

Last 90 days · weekly

Commits (last 30 days)
288
Open PRs
12

Development activity is still being collected.

Built with

Categories and tags

GitHub data

GitHub dataView detailed GitHub data

GitHub Topics

  • monorepo
  • javascript
  • typescript
  • build-tool
  • build-system
Stars
31,120
Forks
2,445
Watchers
149
Open issues
3
Contributors
450
Primary language
Rust
License
MIT
Repository last updated
Sep 20, 2026
Write a related article

Share a guide or use case for this OSS in Markdown. Articles are published after administrator approval.

Report incorrect information

Tell us if any listing information is incorrect or outdated.

Turborepo — Monorepo Build System with Task Graphs and Caching | OSS Tanbou