Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 544 Bytes

File metadata and controls

36 lines (26 loc) · 544 Bytes

Bun Monorepo Template

A minimal monorepo template using Bun workspaces.

Structure

├── apps/
│   ├── server/    # Backend application
│   └── client/    # Frontend application
└── packages/
    └── shared/    # Shared utilities

Getting Started

bun install

Run Apps

bun run --filter @apps/server start
bun run --filter @apps/client start

Add Dependencies

# Root
bun add -d <package>

# Specific workspace
bun add --filter @apps/server <package>