Registry / devops / turbo-linux-64

turbo-linux-64

JSON →
library2.8.17jsnpmunverified

The Linux x64 binary for Turbo (Turborepo), a high-performance monorepo build system by Vercel. Current stable version is 2.8.17. This package is a platform-specific dependency automatically installed by the main `turbo` package; you should never install it directly. Turborepo provides incremental builds, task orchestration, remote caching, and parallel execution. It uses a Go-based core for speed and a Rust-based successor in development (Turborepo 2.0+). Alternatives include Nx and Lerna, but Turbo is simpler to configure and optimizes for CI/CD.

npm install turbo-linux-64
INSTALL
IMPORT
SIG · TURBO-LINUX-64
T
turbo-linux-64
devopsjavascriptv2.8.17
Install
Import
Disk
Pass rate
0/ 6
Env Coverage0 / 6
glibc
1822
musl
1822
Install & Compatibility
Where this runs
tested against v? · npm install
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
node 18226 runs
build_error
glibc
node 18226 runs
build_error
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

turbo
const turbo = require('turbo')
import turbo from 'turbo'
The main turbo package is a CLI tool, not a library. It should not be imported in application code. Use it via command line or npm scripts.
run
turbo run build
require('turbo').run('build')
Turbo is used as a CLI: `npx turbo run <task>`. Do not require() it programmatically.
Package.json Script
"scripts": { "build": "turbo run build" }
"scripts": { "build": "turbo build" }
Turbo requires `run` subcommand before the task name. Running `turbo build` without `run` is a common mistake.

Shows minimal turbo.json pipeline config and basic turbo CLI usage in a monorepo.

// Install turbo globally or in project npm install -g turbo # Create a turbo.json config file in your monorepo root cat > turbo.json <<EOF { "$schema": "https://turbo.build/schema.json", "globalDependencies": [".env"], "pipeline": { "build": { "dependsOn": ["^build"], "outputs": ["dist/**", ".next/**"] }, "test": { "dependsOn": ["build"], "inputs": ["src/**/*.tsx"] } } } EOF # Run build for all workspaces turbo run build # Run test only for changed packages npx turbo run test --filter=...[HEAD^1]
turbo --version
Debug
Known issues
gotchaDo not install turbo-linux-64 directly. It is an optional dependency of the 'turbo' package and platform-specific. Installing it directly will likely cause version mismatches.
fix
Install the main 'turbo' package instead: npm install turbo
affects: all
breakingTurborepo v2.x changed the task dependency syntax from ^depends-on to dependsOn with a caret prefix notation. Old configs may be incompatible.
fix
Update turbo.json to use the new pipeline format: "dependsOn": ["^build"] instead of "dependsOn": ["build"]
affects: >=2.0.0
deprecatedThe 'globalDependencies' field is deprecated in favor of 'globalDependencies' with a different schema. Check docs.
fix
Use 'globalDependencies' as an array of strings (not objects) in turbo.json
affects: >=2.8.0
gotchaTurborepo requires Node.js >= 14.x and npm/yarn/pnpm. Not compatible with older engines.
fix
Upgrade Node.js to version 14 or higher.
affects: >=1.0.0
Errors
Common errors & fixes
Error: Cannot find module 'turbo'
Installed turbo-linux-64 instead of main 'turbo' package, or missing main package.
fix
Install the main turbo package: npm install turbo
Error: ⨯ Unable to resolve turbo binary for platform linux x64
The turbo-linux-64 optional dependency didn't install (e.g., due to network issues or lockfile conflicts).
fix
Delete node_modules/.cache/turbo and run npm install again. If using CI, ensure platform-specific optional deps are not filtered.
Error: ENOENT: no such file or directory, open 'turbo.json'
Missing turbo.json configuration file in project root.
fix
Create a turbo.json file at the root of your monorepo with pipeline configuration.
Upgrade
Version history
2.8.17latest on npm
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources
turbo-linux-64 — npm install turbo-linux-64 · libregistry