{"id":19753239,"url":"https://github.com/mtsewrs/partzilla","last_synced_at":"2026-02-21T10:30:54.646Z","repository":{"id":258625948,"uuid":"875336555","full_name":"mtsewrs/partzilla","owner":"mtsewrs","description":"Multipart parser for node and bun","archived":false,"fork":false,"pushed_at":"2025-03-31T11:13:08.000Z","size":299,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-09T13:02:00.809Z","etag":null,"topics":["bun","library","multipart","node","nodejs","npm-package","parser","rust","typescript"],"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/mtsewrs.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-10-19T17:50:52.000Z","updated_at":"2025-03-31T11:13:11.000Z","dependencies_parsed_at":"2025-03-31T12:23:08.613Z","dependency_job_id":"3f67dbcb-a9fd-4434-b3eb-46984e26e7a4","html_url":"https://github.com/mtsewrs/partzilla","commit_stats":null,"previous_names":["mtsewrs/partzilla"],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/mtsewrs/partzilla","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtsewrs%2Fpartzilla","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtsewrs%2Fpartzilla/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtsewrs%2Fpartzilla/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtsewrs%2Fpartzilla/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mtsewrs","download_url":"https://codeload.github.com/mtsewrs/partzilla/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mtsewrs%2Fpartzilla/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279818223,"owners_count":26231385,"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-10-19T02:00:07.647Z","response_time":64,"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":["bun","library","multipart","node","nodejs","npm-package","parser","rust","typescript"],"created_at":"2024-11-12T02:52:14.374Z","updated_at":"2025-10-19T13:16:27.945Z","avatar_url":"https://github.com/mtsewrs.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp background=\"rgb(57, 59, 58)\" align=\"center\"\u003e\n  \u003cimg align=\"center\" height=\"300\" src=\"https://raw.githubusercontent.com/mtsewrs/partzilla/refs/heads/master/assets/partzilla.webp\" /\u003e\n\u003c/p\u003e\n\n\u003ch2 align=\"center\"\u003e⚡️ Modern multipart parser written in rust and typescript for node and bun\u003c/h2\u003e\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://www.npmjs.com/~partzilla\" target=\"_blank\"\u003e\u003cimg src=\"https://img.shields.io/npm/v/partzilla.svg\" alt=\"NPM Version\" /\u003e\u003c/a\u003e\n  \u003ca href=\"https://www.npmjs.com/~partzilla\" target=\"_blank\"\u003e\u003cimg src=\"https://img.shields.io/npm/dm/partzilla.svg\" alt=\"NPM Downloads\" /\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## Install\n\n```bash\npnpm install partzilla\nbun install partzilla\nyarn install partzilla\nnpm install partzilla\n```\n\n## Usage node\n\n```typescript\nimport { partzilla } from \"partzilla\";\n\ncreateServer(async (req, res) =\u003e {\n  const files = partzilla(req);\n\n  await multipart.next(async (file) =\u003e {\n    // file is of type MultipartFile\n    console.log(file.name);\n    console.log(file.filename);\n    console.log(file.contentType);\n    const stream = file.stream(); // ReadableStream\n  });\n  res.end(\"Node!\");\n});\n```\n\n## Usage bun\n\n```typescript\nimport { partzilla } from \"partzilla\";\n\nBun.serve({\n  async fetch(req) {\n    const files = partzilla(req);\n\n    await multipart.next(async (file) =\u003e {\n      // file is of type MultipartFile\n      console.log(file.name);\n      console.log(file.filename);\n      console.log(file.contentType);\n      const stream = file.stream(); // ReadableStream\n    });\n    return new Response(\"Bun!\");\n  },\n});\n```\n\n## MultipartFile\n\n```typescript\ninterface MultipartFile {\n  name?: string;\n  filename?: string;\n  contentType?: string;\n  stream(): ReadableStream\u003cBuffer\u003e;\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmtsewrs%2Fpartzilla","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmtsewrs%2Fpartzilla","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmtsewrs%2Fpartzilla/lists"}