This repository serves as an example setup for a monorepo using Bun. Supporting:
- nest.js
- nuxt.js
# Install bun
curl -fsSL https://bun.sh/install | bash # for macOS, Linux, and WSL
# to install a specific version
curl -fsSL https://bun.sh/install | bash -s "bun-v1.0.0"
# Clone the repository
git clone https://github.com/jaypeeig/bun-monorepo.git
# Change into the repository directory
cd bun-monorepo
# Install dependencies
bun install
This monorepo is structured into two main workspaces: apps/*
and packages/*
. Modify and organize your applications and packages accordingly.
- test: Execute tests (currently configured to echo an error if no tests are specified).
Found a bug or have a suggestion? Please open an issue on the GitHub repository.
This project is licensed under the ISC License - see the LICENSE.md file for details.
Visit the GitHub repository for more information and updates.