{"id":32122162,"url":"https://github.com/dansalias/json_pointer","last_synced_at":"2026-05-18T04:01:38.202Z","repository":{"id":57675505,"uuid":"367742823","full_name":"dansalias/json_pointer","owner":"dansalias","description":"JSON Pointer for Deno (IETF RFC6901).","archived":false,"fork":false,"pushed_at":"2021-08-11T20:32:02.000Z","size":7,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"trunk","last_synced_at":"2026-05-02T16:39:49.957Z","etag":null,"topics":["deno","json-pointer"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dansalias.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}},"created_at":"2021-05-15T22:42:47.000Z","updated_at":"2021-12-20T18:06:56.000Z","dependencies_parsed_at":"2022-09-26T20:41:34.004Z","dependency_job_id":null,"html_url":"https://github.com/dansalias/json_pointer","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/dansalias/json_pointer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dansalias%2Fjson_pointer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dansalias%2Fjson_pointer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dansalias%2Fjson_pointer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dansalias%2Fjson_pointer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dansalias","download_url":"https://codeload.github.com/dansalias/json_pointer/tar.gz/refs/heads/trunk","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dansalias%2Fjson_pointer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33164672,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T22:39:12.733Z","status":"online","status_checked_at":"2026-05-18T02:00:06.436Z","response_time":71,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["deno","json-pointer"],"created_at":"2025-10-20T20:26:07.033Z","updated_at":"2026-05-18T04:01:38.196Z","avatar_url":"https://github.com/dansalias.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![test](https://github.com/dansalias/json_pointer/actions/workflows/test.yml/badge.svg)](https://github.com/dansalias/json_pointer/actions/workflows/test.yml)\n\nComplete implementation of __JSON Pointer__ for __Deno__, as per IETF\n[RFC6901](https://datatracker.ietf.org/doc/html/rfc6901)\n\n## Usage\n```ts\nimport * as jp from 'https://deno.land/x/json_pointer/mod.ts'\n\nconst obj = {\n  'foo': ['bar', 'baz'],\n  'qux': { 'quux': 'quuz' },\n}\n\n// jp.get(obj: object, pointer: string): any\njp.get(obj, '/foo/0')           // 'bar'\njp.get(obj, '/qux/quux')        // 'quuz'\njp.get(obj, '/hello')           // undefined\n\n// jp.set(obj: object, pointer: string, value: any): void\njp.set(obj, '/foo/1', 'becue')  // obj.foo === ['bar', 'becue']\njp.set(obj, '/foo/-', 'bax')    // obj.foo === ['bar', 'becue', 'bax']\njp.set(obj, '/new/path', 'val') // obj.new === { path: 'val' }\n```\n\n## Testing\n```\ngit clone https://github.com/dansalias/json_pointer\ncd ./json_pointer\ndeno test\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdansalias%2Fjson_pointer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdansalias%2Fjson_pointer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdansalias%2Fjson_pointer/lists"}