### Install Project Dependencies with Bun Source: https://github.com/dkb0512/nest-bun/blob/main/README.md This command installs all required project dependencies using the Bun package manager. It fetches and sets up the necessary packages for the application to run. ```bash $ bun install ``` -------------------------------- ### Run Nest Bun Application Source: https://github.com/dkb0512/nest-bun/blob/main/README.md These commands start the Nest Bun application in different modes. 'start:dev' runs the application in watch mode for development, 'start:prod' runs the compiled application in production, and 'start:app' runs the pre-compiled application. ```bash # watch mode $ bun run start:dev ``` ```bash # production mode $ bun run start:prod ``` ```bash # compiled-app mode $ bun run start:app ``` -------------------------------- ### Update Project Dependencies with Bun Source: https://github.com/dkb0512/nest-bun/blob/main/README.md This command updates all installed project dependencies to their latest compatible versions using the Bun package manager. It ensures the application uses up-to-date libraries. ```bash $ bun update ``` -------------------------------- ### Build Nest Bun Application Source: https://github.com/dkb0512/nest-bun/blob/main/README.md These commands compile the Nest Bun application into a distributable format. The 'build' command creates a standard build, while 'build:minify' creates a minified version for optimized production deployment. ```bash # build mode $ bun run build ``` ```bash # minified build mode $ bun run build:minify ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.