{"id":19449107,"url":"https://github.com/lafkpages/multibun","last_synced_at":"2026-05-16T13:04:37.465Z","repository":{"id":252588875,"uuid":"835489300","full_name":"lafkpages/multibun","owner":"lafkpages","description":"A version manager for Bun.","archived":false,"fork":false,"pushed_at":"2024-10-03T15:24:16.000Z","size":169,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-07T23:31:03.948Z","etag":null,"topics":["bun","manager","version"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lafkpages.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-30T00:21:46.000Z","updated_at":"2024-10-03T15:24:19.000Z","dependencies_parsed_at":"2024-11-10T16:31:39.315Z","dependency_job_id":"55c91c00-558a-49c2-b6bb-570068406514","html_url":"https://github.com/lafkpages/multibun","commit_stats":null,"previous_names":["lafkpages/multibun"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lafkpages%2Fmultibun","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lafkpages%2Fmultibun/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lafkpages%2Fmultibun/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lafkpages%2Fmultibun/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lafkpages","download_url":"https://codeload.github.com/lafkpages/multibun/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240636686,"owners_count":19832924,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bun","manager","version"],"created_at":"2024-11-10T16:30:02.750Z","updated_at":"2026-05-16T13:04:32.444Z","avatar_url":"https://github.com/lafkpages.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Multibun\n\nA version manager for [Bun](https://bun.sh).\n\n![multibun demo recording](assets/demo.svg)\n\n## Installation\n\nMultibun is a command line tool that can be installed globally using npm (or your preferred package manager).\n\n```sh\nnpm install -g multibun\n```\n\n## Usage\n\nMultibun is a command line tool that can be used to manage multiple versions of Bun. It can be used to install, list, switch between and run different versions of Bun.\n\n### Installing Bun Versions\n\nTo install a specific version of Bun, use the `install` command followed by the version number.\n\n```sh\nmultibun install 1.0.0\n```\n\nYou can also install the latest version of Bun by specifying the `latest` keyword.\n\n```sh\nmultibun install latest\n```\n\nTo download a range of versions, use the `--from` and `--to` flags.\n\n```sh\n# install all versions after v0.6.0\nmultibun install --from 0.6.0\n```\n\n```sh\n# install all versions between v0.6.0 and v1.0.0\nmultibun install --from 0.6.0 --to 1.0.0\n```\n\n### Listing Versions\n\nTo list all installed versions of Bun, use the `list` command (or `ls` for short).\n\n```sh\nmultibun list\n```\n\nThis will display a list of all the versions of Bun that are currently installed.\n\nTo list all versions of Bun available to install, use the `list-remote` command (or `lsr` for short).\n\n```sh\nmultibun list-remote\n```\n\n### Switching Between Versions\n\nTo switch between installed versions of Bun, use the `use` command followed by the version number.\n\n```sh\nmultibun use 1.0.0\n```\n\nThis will update the `bun` executable to point to the specified version.\n\n**Note:** if you had previously installed Bun globally, you may need to uninstall it first, or use\nthe `--overwrite` flag to overwrite the existing installation. This is only necessary the first time\nwhen switching from a global installation to a version managed by Multibun.\n\n```sh\nmultibun use 1.0.0 --overwrite\n```\n\n### Running Bun\n\nIf you want to run a specific version of Bun, you can use the `use` command as described above, and\nthen run the `bun` command as you normally would.\n\n```sh\nmultibun use 1.1.0\nbun --version # should output 1.1.0\n```\n\nAlternatively, you can use the `run` command to run a specific version of Bun without switching the\nglobal version.\n\n```sh\nmultibun run -V 1.1.0 -- --version # should output 1.1.0\n```\n\nThe most notable use case for the `run` command, however, is that it can be used to run several\nversions of Bun at once.\n\n```sh\nmultibun run --from 1.1.0 --to 1.1.10 -- --revision\n```\n\nThis can be useful for testing libraries or applications against multiple versions of Bun. It could also\naid in debugging issues that may be specific to a certain version of Bun.\n\nMultibun can also generate pretty reports with the results of the Bun processes in a `run` command.\n\n```sh\nmultibun run --from 1.1.0 --to 1.1.10 -n --html myreport.html -- --revision\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flafkpages%2Fmultibun","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flafkpages%2Fmultibun","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flafkpages%2Fmultibun/lists"}