A modern, high-performance monorepo template powered by Bun and Turborepo, featuring shared Tailwind configuration for consistent styling across all applications.
- ⚡️ Bun - Ultra-fast package management and runtime
- 📦 Turborepo - Efficient monorepo management with intelligent build caching
- 🎨 Shared Tailwind - Consistent styling across all applications
- 🔧 Biome - Modern linting and formatting for consistent code style
- 🚀 Optimized Build System - Advanced caching for faster builds
- 📱 Type Safety - Full TypeScript support across all packages
- Bun installed on your system
- Clone the repository:
git clone https://github.com/shutock/twurbun.git
cd twurbun
- Install dependencies:
bun install
- Start development server:
bun dev
├── apps/ # Application packages
│ ├── _template/ # Template app with basic setup
│ └── root/ # Root application
├── configs/ # Shared configurations
│ ├── tailwind/ # Shared Tailwind config
│ └── typescript/ # Shared TypeScript config
├── packages/ # Shared packages
│ ├── ui/ # Shared UI components
│ └── utils/ # Shared utilities
├── .npmrc # NPM configuration
├── biome.json # Biome configuration
└── turbo.json # Turborepo configuration
bun dev
- Start development servers for all applicationsbun run build
- Build all applications and packages
-
Configure Tailwind
- Modify shared styles in
configs/tailwind/styles.css
- Customize theme in
tailwind.config.ts
- Modify shared styles in
-
Add New Applications
- Copy
apps/_template/
to create new apps - Update application-specific configurations
- Copy
-
Extend Shared Packages
- Add reusable components to
packages/ui/
- Create utility functions in
packages/utils/
- Add reusable components to
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
Built with ❤️ using Bun, Turborepo, and Tailwind CSS.