A template for a Bun-driven monorepo w/ Svelte on the front end, and tRPC w/ Effect on the back end.
npm
, pnpm
, or yarn
if you prefer, just delete the Bun lockfilebun install
The start:dev
script at the root will run the start:dev
scripts in each package.
bun start:dev
That script is really just using nx
under the hood.
To run a script in one of the apps, individually, use nx
:
# Examples
nx start:dev api
nx start:dev web
nx build api
nx build web