{"id":23651511,"url":"https://github.com/athanclark/elm-param-parsing-2","last_synced_at":"2026-02-03T22:06:08.301Z","repository":{"id":57674822,"uuid":"66702534","full_name":"athanclark/elm-param-parsing-2","owner":"athanclark","description":"Another url query param parser in elm","archived":false,"fork":false,"pushed_at":"2016-08-28T04:29:07.000Z","size":227,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-07T17:44:17.735Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/athanclark.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}},"created_at":"2016-08-27T07:43:22.000Z","updated_at":"2016-08-28T04:23:32.000Z","dependencies_parsed_at":"2022-08-29T17:40:21.460Z","dependency_job_id":null,"html_url":"https://github.com/athanclark/elm-param-parsing-2","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/athanclark/elm-param-parsing-2","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/athanclark%2Felm-param-parsing-2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/athanclark%2Felm-param-parsing-2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/athanclark%2Felm-param-parsing-2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/athanclark%2Felm-param-parsing-2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/athanclark","download_url":"https://codeload.github.com/athanclark/elm-param-parsing-2/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/athanclark%2Felm-param-parsing-2/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29059081,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T20:13:53.544Z","status":"ssl_error","status_checked_at":"2026-02-03T20:13:40.507Z","response_time":96,"last_error":"SSL_read: 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-12-28T16:38:08.502Z","updated_at":"2026-02-03T22:06:08.284Z","avatar_url":"https://github.com/athanclark.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# elm-param-parsing-2\n\nRipped off from [jessitron's library](https://github.com/jessitron/elm-param-parsing) -\nthere were just a few subtleties I thought were left out.\n\n## Query String Parsing\n\nSo this module parses URI query strings - specifically strings\nthat begin with the character `?`, and are a `\u0026`-separated list\nof substrings, which themselves may be split via a `=`. The string\nin question should also be ASCII (check me on this), encoded as a\n`x-www-urlencoded` MIME type.\n\nTo parse such a string, just feed it into `parseQuery`:\n\n```elm\nparseQuery \"?foo=bar\u0026baz\u0026qux=1\"\n\u003e [(\"foo\", Just \"bar\"), (\"baz\", Nothing), (\"qux\", Just \"1\")]\n```\n\nI believe the type `List (String, Maybe String)` is more precise\nthan a `Dict` for a number of reasons, which I detail in the docs.\nHappy hacking!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fathanclark%2Felm-param-parsing-2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fathanclark%2Felm-param-parsing-2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fathanclark%2Felm-param-parsing-2/lists"}