{"id":13804406,"url":"https://github.com/vlang/vpm","last_synced_at":"2026-01-28T14:03:00.901Z","repository":{"id":44157699,"uuid":"199538939","full_name":"vlang/vpm","owner":"vlang","description":"V's package manager","archived":false,"fork":false,"pushed_at":"2026-01-22T18:55:10.000Z","size":228,"stargazers_count":129,"open_issues_count":35,"forks_count":37,"subscribers_count":28,"default_branch":"master","last_synced_at":"2026-01-23T11:34:51.072Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://vpm.vlang.io","language":"V","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vlang.png","metadata":{"files":{"readme":"README.md","changelog":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2019-07-29T23:17:39.000Z","updated_at":"2026-01-22T18:55:14.000Z","dependencies_parsed_at":"2023-01-28T22:15:59.178Z","dependency_job_id":"5c284359-9f1d-41d4-83c7-392552ad830f","html_url":"https://github.com/vlang/vpm","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vlang/vpm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vlang%2Fvpm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vlang%2Fvpm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vlang%2Fvpm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vlang%2Fvpm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vlang","download_url":"https://codeload.github.com/vlang/vpm/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vlang%2Fvpm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28846058,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T13:02:32.985Z","status":"ssl_error","status_checked_at":"2026-01-28T13:02:04.945Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2024-08-04T01:00:47.226Z","updated_at":"2026-01-28T14:02:55.892Z","avatar_url":"https://github.com/vlang.png","language":"V","funding_links":["https://patreon.com/vlang","https://github.com/sponsors/medvednikov"],"categories":["Applications"],"sub_categories":["Package managers"],"readme":"\u003ch1 align=\"center\"\u003e\n    \u003ca href=\"https://vpm.vlang.io\"\u003e\n        \u003cimg width='240' alt='V Package Manager' src='.github/assets/vpm.svg'\u003e\n    \u003c/a\u003e\n\u003c/h1\u003e\n\n\u003cdiv align=\"center\"\u003e\n\n\u003c!-- [Getting started][GettingStarted] --\u003e\n\u003c!-- \u0026ensp;|\u0026ensp; --\u003e\n\u003c!-- [Documentation][Docs] --\u003e\n\u003c!-- \u0026ensp;|\u0026ensp; --\u003e\n\u003c!-- [Contribute][Contribute] --\u003e\n\n[![Sponsor][SponsorBadge]][SponsorUrl]\n[![Patreon][PatreonBadge]][PatreonUrl]\n[![Discord][DiscordBadge]][DiscordUrl]\n[![Twitter][TwitterBadge]][TwitterUrl]\n\u003c/div\u003e\n\nInstantly publish your modules and install them. Use the API to interact and find out more information about available modules. Become a contributor and enhance V with your work. [vpm.vlang.io →][vpm]\n\nTo run it locally, just run\n\n```bash\nv .\n```\n\nDon't forget to update `config.toml`: set your Postgres host, port, user, password, and dbname.\n\nMake sure you have `libpq-dev` installed. Please refer to your OS or distribution documentation to install it.\n\nIn order to use GitHub authentication, add GitHub client id and secret as well.\n\n## Tailwind Setup\nDownload and install Tailwinds [Standalone CLI][tailwindCli] in your local clone.\n\n**Linux Example**:\n```bash\ncurl -sLO https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-linux-x64\nchmod +x tailwindcss-linux-x64\nmv tailwindcss-linux-x64 tailwindcss\n```\nYou can edit the tailwind configuration in `tailwind.config.js` and add custom css to `static/css/index.css`.\n\n### Watching CSS\nUse the Standalone CLI to watch the css for changes\n```bash\n./tailwindcss -i static/css/index.css -o static/css/dist.css --watch --minify\n```\n\n### Intellisense\nUse Tailwinds [CSS Intellisense][tailwindExtension] extension for VSCode to get code completion for\nall tailwinds classes.\n\n## Development database\n\nInstance of locally installed Postgres 15 or docker container:\n\n```bash\ndocker run -it \\\n  --name vpm-database \\\n  -e POSTGRES_DB=vpm \\\n  -e POSTGRES_USER=vpm \\\n  -e POSTGRES_PASSWORD=vpm \\\n  --mount source=vpm-data,target=/var/lib/postgresql/data \\\n  -p 5432:5432 \\\n  postgres:15\n```\n\n\u003c!-- Reference links --\u003e\n[vpm]: https://vpm.vlang.io\n\u003c!-- [GettingStarted]: https://vpm.vlang.io/docs/getting-started --\u003e\n\u003c!-- [Docs]: https://vpm.vlang.io/docs --\u003e\n\u003c!-- [Contribute]: .github/CONTRIBUTING.md --\u003e\n[tailwindCli]: https://tailwindcss.com/blog/standalone-cli\n[tailwindExtension]: https://marketplace.visualstudio.com/items?itemName=bradlc.vscode-tailwindcss\n\n\u003c!-- Badges --\u003e\n[DiscordBadge]: https://img.shields.io/discord/592103645835821068?label=Discord\u0026logo=discord\u0026logoColor=white\n[PatreonBadge]: https://img.shields.io/endpoint.svg?url=https%3A%2F%2Fshieldsio-patreon.vercel.app%2Fapi%3Fusername%3Dvlang%26type%3Dpatrons\u0026style=flat\n[SponsorBadge]: https://camo.githubusercontent.com/da8bc40db5ed31e4b12660245535b5db67aa03ce/68747470733a2f2f696d672e736869656c64732e696f2f7374617469632f76313f6c6162656c3d53706f6e736f72266d6573736167653d254532253944254134266c6f676f3d476974487562\n[TwitterBadge]: https://img.shields.io/badge/follow-%40v_language-1DA1F2?logo=twitter\u0026style=flat\u0026logoColor=white\u0026color=1da1f2\n\n\u003c!-- Socials --\u003e\n[DiscordUrl]: https://discord.gg/vlang\n[PatreonUrl]: https://patreon.com/vlang\n[SponsorUrl]: https://github.com/sponsors/medvednikov\n[TwitterUrl]: https://twitter.com/v_language\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvlang%2Fvpm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvlang%2Fvpm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvlang%2Fvpm/lists"}