{"id":20078771,"url":"https://github.com/nasso/wazip","last_synced_at":"2026-05-09T05:02:53.331Z","repository":{"id":92715063,"uuid":"395152117","full_name":"nasso/wazip","owner":"nasso","description":"A ZIP file manipulation library for JavaScript powered by WASM","archived":false,"fork":false,"pushed_at":"2021-08-12T03:36:22.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-29T12:15:33.415Z","etag":null,"topics":["javascript","wasm","zip"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/nasso.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE-2.0","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,"publiccode":null,"codemeta":null}},"created_at":"2021-08-12T00:42:16.000Z","updated_at":"2021-08-12T03:36:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"45f63219-9961-4bc9-98c5-c8e6ed5312f2","html_url":"https://github.com/nasso/wazip","commit_stats":{"total_commits":9,"total_committers":1,"mean_commits":9.0,"dds":0.0,"last_synced_commit":"b73c50a7783b51eef5ac3c3db0e0462f7282a1dd"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nasso/wazip","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nasso%2Fwazip","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nasso%2Fwazip/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nasso%2Fwazip/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nasso%2Fwazip/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nasso","download_url":"https://codeload.github.com/nasso/wazip/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nasso%2Fwazip/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32807861,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"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":["javascript","wasm","zip"],"created_at":"2024-11-13T15:16:33.165Z","updated_at":"2026-05-09T05:02:53.299Z","avatar_url":"https://github.com/nasso.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# wazip\n\n[![build](https://github.com/nasso/wazip/actions/workflows/rust.yml/badge.svg)](https://github.com/nasso/wazip/actions/workflows/rust.yml)\n\n`wazip` is a ZIP file manipulation library for JavaScript powered by WebAssembly\nand written in Rust.\n\n## Usage\n\n```ts\nimport { ZipWriter } from \"wazip\";\nimport { saveAs } from \"file-saver\";\n\nasync function main() {\n  // Create a new ZipWriter to create a new archive\n  let writer = new ZipWriter();\n\n  // You can optionally set the ZIP comment for the archive\n  writer.set_comment(\"a nice message!\");\n\n  // Add a new file with `start_file`\n  writer.start_file(\"foo.txt\");\n\n  // Write data to the current file (foo.txt)\n  // ZipWriter.write() takes an array or typed-array. strings must be encoded\n  writer.write(new TextEncoder().encode(\"hello world!\"));\n\n  // When you're done, call writer.finish() and you get a Uint8Array (the ZIP)\n  let zip_data = writer.finish();\n\n  // This example uses file-saver to download the generated ZIP file\n  saveAs(new Blob([zip_data], { type: \"application/zip\" }), \"bar.zip\");\n}\n\nmain();\n```\n\n## Features\n\n| Feature                        | Status                       |\n| ------------------------------ | ---------------------------- |\n| Create an archive from scratch | :white_check_mark: Supported |\n| Read an existing archive       | :construction: Planned       |\n| Modify an archive              | :construction: Planned       |\n\nCurrently only DEFLATE is supported, but support for uncompressed storage is\nplanned. Other compression methods might be added if they can be ported to WASM.\n\n## License\n\n`wazip` is licensed under the terms of both the MIT license and the Apache\nLicense (Version 2.0), at your choice.\n\nSee LICENSE-MIT and LICENSE-APACHE-2.0 files for the full texts.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnasso%2Fwazip","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnasso%2Fwazip","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnasso%2Fwazip/lists"}