{"id":28424314,"url":"https://github.com/amythicdev/zigverm","last_synced_at":"2026-04-04T12:08:40.174Z","repository":{"id":238300366,"uuid":"796279297","full_name":"AMythicDev/zigverm","owner":"AMythicDev","description":"Version manager for the Zig Programming Language","archived":false,"fork":false,"pushed_at":"2025-03-16T17:51:00.000Z","size":155,"stargazers_count":8,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-05T10:11:45.932Z","etag":null,"topics":["version-manager","zig"],"latest_commit_sha":null,"homepage":"","language":"Zig","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AMythicDev.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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-05-05T13:35:33.000Z","updated_at":"2025-03-16T17:51:03.000Z","dependencies_parsed_at":"2024-06-04T22:31:20.170Z","dependency_job_id":"8a688a7a-4edf-4ba8-b790-793688453eda","html_url":"https://github.com/AMythicDev/zigverm","commit_stats":null,"previous_names":["amythicdev/zigvm","amythicdev/zigverm"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/AMythicDev/zigverm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AMythicDev%2Fzigverm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AMythicDev%2Fzigverm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AMythicDev%2Fzigverm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AMythicDev%2Fzigverm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AMythicDev","download_url":"https://codeload.github.com/AMythicDev/zigverm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AMythicDev%2Fzigverm/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261891658,"owners_count":23225766,"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":["version-manager","zig"],"created_at":"2025-06-05T10:11:44.601Z","updated_at":"2026-04-04T12:08:40.167Z","avatar_url":"https://github.com/AMythicDev.png","language":"Zig","funding_links":[],"categories":[],"sub_categories":[],"readme":"# zigverm\n\nzigverm is a version manager for the [Zig](https://ziglang.org) programming Language. It lets you install Zig and further manage your installation.\n\n## Platform Support\n\nLegend:  \n🎉 - Binary releases + automatic installer available  \n💪 - binary releases available  \n❌ - No binary releases. Maybe supported later. Requires [compiling](#compiling)  \n\\- - Not applicable\n\n| OS/Arch | x86_64 | x86 | aarch64 | armv7a | riscv64 |\n| ------- | ------ | --- | ------- | ------ | ------- |\n| Windows | 🎉     | 🎉  | ❌      | -      | -       |\n| Linux   | 🎉     | 🎉  | 🎉      | ❌     | ❌      |\n| MacOS   | 🎉     | -   | 🎉      | -      | -       |\n\n## Installation\n\n### For Linux and MacOS (x86_64/aarch64)\n\nYou can use this automated install script which will install zigverm along with the latest version of Zig\n\n```sh\ncurl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/AMythicDev/zigverm/main/scripts/install.sh | bash\n```\n\nBy default it will create `$HOME/.zigverm` directory as the root folder for zigverm. You can customize\nthis by setting this by setting the `ZIGVERM_ROOT_DIR` to the directory where you want to install\nzigverm. Make sire you add the `ZIGVERM_ROOT_DIR` in your shell config otherwise zigverm would not be able\nto locate the installation folder.\n\nThe script will also put the installation directory's `bin` folder to your `$PATH` variable. For\nthis it will append a line to your `$HOME/.profile` and your shell's rc file. The file for each\nshell supported is listed below:\n\n- Bash: `$HOME/.bashrc`\n- Zsh: `$HOME/.zshrc`\n- Fish: `$XDG_CONFIG_HOME/fish/config.fish`, if not set then uses `$HOME/.config/fish/config.fish`\n\n### For Windows\nDownload the automatic installer from the [Releases](https://github.com/AMythicDev/zigverm/releases) page and run it in Windows PowerShell.\nSimilar to Linux/MacOS, the `ZIGVERM_ROOT_DIR` enviroment variable can be set before running the automatic installer to set the zigverm install location.\n\n### Compiling\n\nRequirements:\n- zigverm can only be compiled with Zig master for now, until Zig v0.16 is released.\n- libc on non-Windows systems. Can be provided by Zig itself, if available for the platform.\n- `git`, if you want to compile the latest commit or you want to develop `zigverm`.\n\nNow to compile:\n\n- Clone the repo or download a source archive depending on if you want to compile the latest `main`\n  branck or a release.\n- Extract the archive and change into the extracted directory.\n- Run the following command\n\n```\nzig build --release=safe\n```\n\n- If you are devloping `zigverm`, you can omit the `--release=safe` flag.\n- You will have `zigverm` and `zig` in `zig-out/bin/` directory.\n- Create the following folder structure in `~/.zigverm/`\n```\n.\n├── bin\n├── downloads\n└── installs\n```\n- Copy `zigverm` and `zig` binaries to the `bin/` folder.\n- Add the `bin/` directory to your PATH enviroment variable.\n\n## Features\n\n- [x] Install versions (master, stable, x.y x.y.z)\n- [x] Continue download if previously interrupted\n- [x] Remove versions\n- [x] List down installed versions\n- [x] Update zigverm itself\n- [x] Manage default and per-directory version overrides\n- [x] Open the language reference and standard library docs (even when offline).\n- [x] Tries to maintain strong compatiblity with the wider zig ecosystem (`zls`, `zig.vim`)\n\n## Docs\n\nRead the [User Guide](./docs/user-guide.md)\n\n## License\n\n`zigverm` is licensed under the Apache License 2.0. See the [LICENSE](./LICENSE) file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famythicdev%2Fzigverm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famythicdev%2Fzigverm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famythicdev%2Fzigverm/lists"}