{"id":16414278,"url":"https://github.com/oplik0/base91-deno","last_synced_at":"2026-05-02T20:33:04.531Z","repository":{"id":62421539,"uuid":"274972358","full_name":"oplik0/base91-deno","owner":"oplik0","description":"more space efficient encoding than base64","archived":false,"fork":false,"pushed_at":"2024-03-01T15:06:39.000Z","size":22,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-06T13:37:52.320Z","etag":null,"topics":["base91","decoder","decoding","deno","encoder","encoding","javascript","text-encoding","typescript"],"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/oplik0.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},"funding":{"github":"oplik0"}},"created_at":"2020-06-25T17:08:41.000Z","updated_at":"2024-11-14T19:25:59.000Z","dependencies_parsed_at":"2024-03-01T16:24:38.237Z","dependency_job_id":"cccfcb60-c86f-4318-a8b5-047631265815","html_url":"https://github.com/oplik0/base91-deno","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oplik0%2Fbase91-deno","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oplik0%2Fbase91-deno/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oplik0%2Fbase91-deno/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oplik0%2Fbase91-deno/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oplik0","download_url":"https://codeload.github.com/oplik0/base91-deno/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240451554,"owners_count":19803492,"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":["base91","decoder","decoding","deno","encoder","encoding","javascript","text-encoding","typescript"],"created_at":"2024-10-11T06:53:52.418Z","updated_at":"2026-05-02T20:32:59.505Z","avatar_url":"https://github.com/oplik0.png","language":"TypeScript","funding_links":["https://github.com/sponsors/oplik0"],"categories":[],"sub_categories":[],"readme":"# base91-deno\n\nmore space efficient encoding than base64\n\n[![Deno CI](https://github.com/oplik0/base91-deno/workflows/Deno%20CI/badge.svg)](https://github.com/oplik0/base91-deno/actions)\n\n## Getting started\n\nEncoding:\n\n```ts\nimport { encode } from \"https://deno.land/x/base91@v1.1.1/base91.ts\";\nconst encoder = new TextEncoder(); //converts utf-8 string to Uint8Array\nconst input = encoder.encode(\"test\"); //Uint8Array(4) [ 116, 101, 115, 116 ]\nconst result = encode(input); //\"fPNKd\"\n```\n\nDecoding:\n\n```ts\nimport { decode } from \"https://deno.land/x/base91@v1.1.1/base91.ts\";\nconst decoder = new TextDecoder(\"utf-8\"); //used to convert Uint8Array to utf-8 string\nconst result = decode(\"fPNKd\"); //Uint8Array(4) [ 116, 101, 115, 116 ]\nconst output = decoder.decode(result); //\"test\"\n```\n\n## Development\n\nRun tests:\n\n```bash\ndeno test\n```\n\nThis project is using Deno built-in formatter. You can format your code using:\n\n```bash\ndeno fmt\n```\n\nOr ensure it's following its rules with:\n\n```bash\ndeno fmt --check\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foplik0%2Fbase91-deno","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foplik0%2Fbase91-deno","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foplik0%2Fbase91-deno/lists"}