### BVM Examples Source: https://github.com/mrhacker26/bvm/blob/main/README.md Practical examples demonstrating how to use BVM for common version management tasks. Includes installing, switching, listing, and removing Bun versions. ```bash # Install the latest Bun version bvm install latest # Install a specific Bun version bvm install 1.0.12 # or use alias bvm i 1.0.12 # Switch to a specific version bvm use 1.0.12 # List all installed versions bvm list bvm ls # or use alias # See what versions are available remotely bvm remote bvm r # or use alias # Remove an old version bvm uninstall 1.0.11 bvm u 1.0.11 # or use alias ``` -------------------------------- ### BVM Development Setup Source: https://github.com/mrhacker26/bvm/blob/main/README.md Steps to set up the BVM project for development. This includes cloning the repository, installing dependencies, building the project, and linking it for local testing. ```bash # Clone the repository git clone https://github.com/MrHacker26/bvm.git cd bvm # Install dependencies pnpm install # Build the project pnpm build # Link for local testing pnpm link # Run in development mode pnpm dev ``` -------------------------------- ### Install BVM from npm Source: https://github.com/mrhacker26/bvm/blob/main/README.md Install BVM globally using your preferred package manager. After installation, the 'bvm' command will be available in your terminal. ```bash # With npm npm install -g bunvm # With pnpm (recommended) pnpm add -g bunvm # With yarn yarn global add bunvm # With Bun bun add -g bunvm ``` -------------------------------- ### Install BVM from Source Source: https://github.com/mrhacker26/bvm/blob/main/README.md Clone the BVM repository, install dependencies, build the project, and link it locally for development or testing. ```bash git clone https://github.com/MrHacker26/bvm.git cd bvm pnpm install pnpm build pnpm link ``` -------------------------------- ### BVM Usage Commands Source: https://github.com/mrhacker26/bvm/blob/main/README.md Common BVM commands for managing Bun versions. Use these to install, switch, list, and uninstall different Bun releases. ```bash bvm install # Install a specific Bun version (alias: i) bvm install latest # Install the latest Bun version bvm use # Set a specific Bun version as active bvm uninstall # Remove an installed version (alias: u) bvm current # Display currently activated version of Bun bvm list # List installed Bun versions (alias: ls) bvm remote # List available remote Bun versions (alias: r) bvm --help # Show help information ``` -------------------------------- ### BVM Development Scripts Source: https://github.com/mrhacker26/bvm/blob/main/README.md Available npm scripts for BVM development. These scripts cover building, running in development mode, cleaning, formatting, and linting the project. ```bash - `pnpm build` - Build the project with tsup - `pnpm dev` - Run in development mode with tsx - `pnpm clean` - Clean build directory - `pnpm start` - Run the built CLI - `pnpm format` - Format code with Prettier - `pnpm lint` - Lint code with ESLint - `pnpm lint:fix` - Fix linting issues ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.