{"id":18999835,"url":"https://github.com/kagis/zipcat","last_synced_at":"2025-09-09T23:39:00.397Z","repository":{"id":39405920,"uuid":"506928884","full_name":"kagis/zipcat","owner":"kagis","description":"Catenates multiple byte-streams into zip-stream","archived":false,"fork":false,"pushed_at":"2022-06-24T08:42:57.000Z","size":3,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-02-21T13:17:41.542Z","etag":null,"topics":["create-zip","create-zip-file","zip","zipjs"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/kagis.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":"2022-06-24T08:06:17.000Z","updated_at":"2022-06-24T08:45:07.000Z","dependencies_parsed_at":"2022-09-10T03:21:26.376Z","dependency_job_id":null,"html_url":"https://github.com/kagis/zipcat","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kagis/zipcat","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kagis%2Fzipcat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kagis%2Fzipcat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kagis%2Fzipcat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kagis%2Fzipcat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kagis","download_url":"https://codeload.github.com/kagis/zipcat/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kagis%2Fzipcat/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274383854,"owners_count":25275186,"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","status":"online","status_checked_at":"2025-09-09T02:00:10.223Z","response_time":80,"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":["create-zip","create-zip-file","zip","zipjs"],"created_at":"2024-11-08T18:05:20.720Z","updated_at":"2025-09-09T23:39:00.362Z","avatar_url":"https://github.com/kagis.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# zipcat\n\n```js\nimport { zipcat } from 'https://raw.githubusercontent.com/kagis/zipcat/c2fc55f65f33c1576ae5cd9c6ed6e5999dc7f032/zipcat.js';\nimport { readableStreamFromIterable } from 'https://deno.land/std@0.144.0/streams/mod.ts';\n\nawait readableStreamFromIterable(zipcat(generate_zip_entries())).pipeTo(Deno.stdout.writable);\n\nasync function * generate_zip_entries() {\n  yield { name: 'one.txt', data: utf8enc('hello world\\n') };\n  yield { name: 'two.txt', data: [utf8enc('lorem ipsum\\n'), utf8enc('dolor sit amet\\n')] };\n  \n  const file = await Deno.open('/tmp/three.txt');\n  yield { name: 'three.txt', data: file.readable };\n}\n\nfunction utf8enc(s) {\n  return new TextEncoder().encode(s);\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkagis%2Fzipcat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkagis%2Fzipcat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkagis%2Fzipcat/lists"}