This is a Turborepo starter with two different apps/frameworks using (React/Next.js, Vue/Nuxt.js) with TailwindCSS installed and a shared ui package for each framework.
Want to know/understand everything about this monorepo? Read this artical
This turborepo uses npm as a package manager. It includes the following packages/apps:
appspackagesreact-ui: a stub React component library shared across all React applications.vue-ui: a stub Vue component library shared across all Vue applications.eslint-config-custom:eslintconfigurations (includeseslint-config-nextandeslint-config-prettier)tsconfig:tsconfig.jsons used throughout the monorepo
Each package/app is 100% TypeScript.
This turborepo has some additional tools already setup for you:
- TypeScript for static type checking
- TailwindCSS a utility-first CSS framework.
- ESLint for code linting.
- Prettier for code formatting.
- Husky Modern native Git hooks made easy.
First clone the repo, then install the dependencies
npm install
after that, start the development server (apps running in parallel)
npm run dev
That's it, enjoy!

