turbo

Build system optimized for JavaScriptΒ and TypeScript, written in Rust [Moved to: https://github.com/vercel/turborepo] (by vercel)

Turbo Alternatives

Similar projects and alternatives to turbo

  1. Next.js

    2,328 turbo VS Next.js

    The React Framework

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. React

    1,932 turbo VS React

    The library for web and native user interfaces.

  4. Tailwind CSS

    1,503 turbo VS Tailwind CSS

    A utility-first CSS framework for rapid UI development.

  5. TypeScript

    1,421 turbo VS TypeScript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  6. vercel

    591 turbo VS vercel

    Develop. Preview. Ship.

  7. Prisma

    480 turbo VS Prisma

    Next-generation ORM for Node.js & TypeScript | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB

  8. nx

    373 turbo VS nx

    Build system, optimized for monorepos, with AI-powered architectural awareness and advanced CI capabilities.

  9. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  10. esbuild

    An extremely fast bundler for the web

  11. templates

    Railway starters (by railwayapp)

  12. bulletproof-react

    250 turbo VS bulletproof-react

    πŸ›‘οΈ βš›οΈ A simple, scalable, and powerful architecture for building production ready React applications.

  13. create-t3-app

    194 turbo VS create-t3-app

    The best way to start a full-stack, typesafe Next.js app

  14. Protobuf

    194 turbo VS Protobuf

    Protocol Buffers - Google's data interchange format

  15. parcel

    185 turbo VS parcel

    The zero configuration build tool for the web. πŸ“¦πŸš€

  16. lerna

    170 turbo VS lerna

    Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository.

  17. material-ui-docs

    158 turbo VS material-ui-docs

    ⚠️ Please don't submit PRs here as they will be closed. To edit the docs or source code, please use the main repository: http://github.com/mui/material-ui.

  18. swc

    156 turbo VS swc

    Rust-based platform for the Web

  19. tools

    46 turbo VS tools

    Discontinued Unified developer tools for JavaScript, TypeScript, and the web

  20. changesets

    37 turbo VS changesets

    πŸ¦‹ A way to manage your versioning and changelogs with a focus on monorepos

  21. monorepo.tools

    32 turbo VS monorepo.tools

    Your defacto guide on monorepos, and in depth feature comparisons of tooling solutions.

  22. buck2

    38 turbo VS buck2

    Build system, successor to Buck

  23. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better turbo alternative or higher similarity.

turbo discussion

Log in or Post with
  1. User avatar
    todaypp
    Β· 11 months ago
    Β· Reply

    Review β˜…β˜…β˜…β˜…β˜… 10/10

turbo reviews and mentions

Posts with mentions or reviews of turbo. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-05-20.
  • Monorepo architecture in shadcn-ui/ui.
    3 projects | dev.to | 20 May 2024
    Start from example section on the turbo.build provides one of the examples that involves Next.js usage. It is a Turborepo starter with Next.js
  • How I Build Paradise UI: A React UI Component Library
    7 projects | dev.to | 14 May 2024
    I also use turbo build to build all the packages or running other npm commands at once.
  • Supermemory - ChatGPT for your bookmarks
    2 projects | dev.to | 14 Apr 2024
    Supermemory has three main modules, managed by turborepo:
  • Next.js Shopify eCommerce Starter with Perfect Web Vitals πŸš€
    2 projects | dev.to | 12 Apr 2024
    From a structural viewpoint, we use a monorepo (Turborepo) to manage packages, even though we currently have only one Next.js app. We chose this setup because it prepares us for future developments, which will include additional apps. This arrangement helps keep the packages well-separated and self-contained.
  • dev.to wrapped 2023 🎁
    2 projects | dev.to | 7 Dec 2023
    # src Dockerfile: https://github.com/vercel/turbo/blob/main/examples/with-docker/apps/web/Dockerfile FROM node:18-alpine AS alpine # setup pnpm on the alpine base FROM alpine as base ENV PNPM_HOME="/pnpm" ENV PATH="$PNPM_HOME:$PATH" RUN corepack enable RUN pnpm install turbo --global FROM base AS builder # Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. RUN apk add --no-cache libc6-compat RUN apk update # Set working directory WORKDIR /app COPY . . RUN turbo prune --scope=web --docker # Add lockfile and package.json's of isolated subworkspace FROM base AS installer RUN apk add --no-cache libc6-compat RUN apk update WORKDIR /app # First install the dependencies (as they change less often) COPY .gitignore .gitignore COPY --from=builder /app/out/json/ . COPY --from=builder /app/out/pnpm-lock.yaml ./pnpm-lock.yaml COPY --from=builder /app/out/pnpm-workspace.yaml ./pnpm-workspace.yaml RUN pnpm install # Build the project COPY --from=builder /app/out/full/ . COPY turbo.json turbo.json RUN turbo run build --filter=web # use alpine as the thinest image FROM alpine AS runner WORKDIR /app # Don't run production as root RUN addgroup --system --gid 1001 nodejs RUN adduser --system --uid 1001 nextjs USER nextjs COPY --from=installer /app/apps/web/next.config.js . COPY --from=installer /app/apps/web/package.json . # Automatically leverage output traces to reduce image size # https://nextjs.org/docs/advanced-features/output-file-tracing COPY --from=installer --chown=nextjs:nodejs /app/apps/web/.next/standalone ./ COPY --from=installer --chown=nextjs:nodejs /app/apps/web/.next/static ./apps/web/.next/static COPY --from=installer --chown=nextjs:nodejs /app/apps/web/public ./apps/web/public CMD node apps/web/server.js
  • .dockerignore being ignored by docker-compose? no space left on device
    3 projects | /r/docker | 5 Dec 2023
    Following this example: https://github.com/vercel/turbo/tree/main/examples/with-docker/apps/web. Except I'm using pnpm. Edit Reddit Codeblocks are horrible and keeps removing all formatting.
  • How to Win Any Hackathon πŸš€πŸ€‘
    7 projects | dev.to | 2 Nov 2023
    The Dockerfile might seem a bit complicated (it is), but the reason for that is mostly just turborepo and the need for good caching. Realistically, you will only need to change the last line, if at all. It is based on this awesome Github Issue.
  • PURISTA: Build with rimraf, esbuild, Turbo & git-cliff
    3 projects | dev.to | 11 Sep 2023
    PURISTA is organized in a monorepo. During the development and build process, Turbo is used to execute different tasks and steps on multiple packages with one command.
  • How I approach and structure Enterprise frontend applications after 4 years of using Next.js
    5 projects | dev.to | 9 Sep 2023
    Turbo repo
  • Vercel Integration and Next.js App Router Support
    3 projects | dev.to | 10 Aug 2023
    Previously we mapped each Vercel project to a single Supabase project. With this release, we're introducing the concept of project 'Connections'. Supabase projects can have an unlimited number of Vercel Connections. This is especially useful for monorepos using Turborepo.
  • A note from our sponsor - SaaSHub
    www.saashub.com | 12 May 2025
    SaaSHub helps you find the best software and product alternatives Learn more β†’

Stats

Basic turbo repo stats
60
25,823
9.9
9 months ago

vercel/turbo is an open source project licensed under MIT License which is an OSI approved license.

The primary programming language of turbo is Rust.


Sponsored
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com

Did you know that Rust is
the 5th most popular programming language
based on number of references?