This is a PNPM project starter turborepo.
This turborepo uses pnpm as a package manager. It includes the following packages/apps:
- next`: a Next.js app. It serves as an example frontend.
server
: a sample express server, serves as an example API endpoint.@mj/ui
: a stub React component library shared by bothnext-app
@mj/eslint-config
:eslint
configurations (includeseslint-config-next
andeslint-config-prettier
)@mj/tsconfig
:@mj/tsconfig.json
s used throughout the monorepojest-custom
: Ignore it for now
Each package/app is 100% TypeScript.
This turborepo has some additional tools already setup for you:
- TypeScript for static type checking
- ESLint for code linting
- Jest test runner for all things JavaScript
- Prettier for code formatting
This repository is used in the pnpm create-turbo:latest
command, and selected when choosing which package manager you wish to use with your monorepo (pnpm).
Turborepo is installed globally with pnpm install turbo --global
. See further guide on installing Turborepo globally.
To build all apps and packages, run the following command:
cd my-turborepo
pnpm run build
or turbo dev (turbo must be installed globally)
To develop all apps and packages, run the following command:
cd my-turborepo
pnpm run dev
turbo dev (turbo must be installed globally)
Turborepo can use a technique known as Remote Caching (Beta) to share cache artifacts across machines, enabling you to share build caches with your team and CI/CD pipelines.
By default, Turborepo will cache locally. To enable Remote Caching (Beta) you will need an account with Vercel. If you don't have an account you can create one, then enter the following commands:
cd my-turborepo
turbo login (turbo must be installed globally)
This will authenticate the Turborepo CLI with your Vercel account.
Next, you can link your Turborepo to your Remote Cache by running the following command from the root of your turborepo:
turbo link
Learn more about the power of Turborepo: