{"id":15446359,"url":"https://github.com/moul/multipmuri","last_synced_at":"2025-11-01T08:04:36.493Z","repository":{"id":50963028,"uuid":"198467226","full_name":"moul/multipmuri","owner":"moul","description":"A library to parse project-management URIs (inspired by @multiformats)","archived":false,"fork":false,"pushed_at":"2024-07-21T14:13:25.000Z","size":83,"stargazers_count":1,"open_issues_count":7,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-24T05:51:09.954Z","etag":null,"topics":["github","gitlab","jira","multiformats","project-management","trello","uri"],"latest_commit_sha":null,"homepage":"https://manfred.life/golang","language":"Go","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/moul.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["moul"],"patreon":"moul","open_collective":"moul","custom":["https://manfred.life/donate"]}},"created_at":"2019-07-23T16:19:56.000Z","updated_at":"2021-05-26T16:51:32.000Z","dependencies_parsed_at":"2024-02-09T01:02:49.624Z","dependency_job_id":"03e55233-2e71-45d9-9844-93a007f91fa0","html_url":"https://github.com/moul/multipmuri","commit_stats":{"total_commits":38,"total_committers":4,"mean_commits":9.5,"dds":"0.10526315789473684","last_synced_commit":"c534e43c034a516d512f84ad64efbb17c9901c5d"},"previous_names":[],"tags_count":16,"template":false,"template_full_name":"moul/golang-repo-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moul%2Fmultipmuri","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moul%2Fmultipmuri/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moul%2Fmultipmuri/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moul%2Fmultipmuri/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/moul","download_url":"https://codeload.github.com/moul/multipmuri/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244091247,"owners_count":20396581,"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":["github","gitlab","jira","multiformats","project-management","trello","uri"],"created_at":"2024-10-01T20:00:52.424Z","updated_at":"2025-11-01T08:04:36.397Z","avatar_url":"https://github.com/moul.png","language":"Go","funding_links":["https://github.com/sponsors/moul","https://patreon.com/moul","https://opencollective.com/moul","https://manfred.life/donate"],"categories":[],"sub_categories":[],"readme":"# multipmuri\n\n\u003e A library to parse project-management URIs (inspired by @multiformats)\n\n[![CircleCI](https://circleci.com/gh/moul/multipmuri.svg?style=shield)](https://circleci.com/gh/moul/multipmuri)\n[![GoDoc](https://godoc.org/moul.io/multipmuri?status.svg)](https://godoc.org/moul.io/multipmuri)\n[![License](https://img.shields.io/github/license/moul/multipmuri.svg)](https://github.com/moul/multipmuri/blob/master/LICENSE)\n[![GitHub release](https://img.shields.io/github/release/moul/multipmuri.svg)](https://github.com/moul/multipmuri/releases)\n[![Go Report Card](https://goreportcard.com/badge/moul.io/multipmuri)](https://goreportcard.com/report/moul.io/multipmuri)\n[![CodeFactor](https://www.codefactor.io/repository/github/moul/multipmuri/badge)](https://www.codefactor.io/repository/github/moul/multipmuri)\n[![codecov](https://codecov.io/gh/moul/multipmuri/branch/master/graph/badge.svg)](https://codecov.io/gh/moul/multipmuri)\n[![Made by Manfred Touron](https://img.shields.io/badge/made%20by-Manfred%20Touron-blue.svg?style=flat)](https://manfred.life/)\n\u003c!--[![Docker Metrics](https://images.microbadger.com/badges/image/moul/multipmuri.svg)](https://microbadger.com/images/moul/multipmuri)--\u003e\n\n\n## Usage\n\nThis libraries parses an URI that you could find in a README, markdown, comment field of the populat project-management tools.\n\nYou can use the library to parse an URI:\n* without context (i.e. `github.com/moul/depviz#42`)\n* with a context (i.e. `#42` in the context of `github.com/moul/depviz`)\n\n```golang\nimport \"moul.io/multipmuri\"\n\ndepviz42, _ := multipmuri.DecodeString(\"github.com/moul/depviz#42\")\nfmt.Println(depviz42) // https://github.com/moul/depviz/issues/42\n\ndepviz43, _ := depviz42.RelDecodeString(\"#43\")\nfmt.Println(depviz43) // https://github.com/moul/depviz/issues/43\n```\n\n## Install\n\n```console\n$ go get -u moul.io/multipmuri\n```\n\n## License\n\n© 2019 [Manfred Touron](https://manfred.life) -\n[Apache-2.0 License](https://github.com/moul/multipmuri/blob/master/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoul%2Fmultipmuri","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmoul%2Fmultipmuri","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoul%2Fmultipmuri/lists"}