@chubbyts/chubbyts-undici-multipart
v1.0.0
Published
A minimal multipart middleware for chubbyts-undici-server.
Downloads
13
Maintainers
Readme
chubbyts-undici-multipart
Description
A minimal multipart middleware for chubbyts-undici-server.
Requirements
- node: 20
- @chubbyts/chubbyts-undici-server: ^1.0.0
- busboy: ^1.6.0
Installation
Through NPM as @chubbyts/chubbyts-undici-multipart.
npm i @chubbyts/chubbyts-undici-multipart@^1.0.0Usage
import { createMultipartMiddleware } from '@chubbyts/chubbyts-undici-multipart/dist/multipart-middleware';
import type { Handler } from '@chubbyts/chubbyts-undici-server/dist/handler';
import { ServerRequest } from '@chubbyts/chubbyts-undici-server/dist/server';
import type { Response } from '@chubbyts/chubbyts-undici-server/dist/server';
// if request original content-type was multipart/form-data, the current content-type and body is now application/x-www-form-urlencoded
const handler: Handler = async (request: ServerRequest): Promise<Response> ...;
const multipartMiddleware = createMultipartMiddleware();
const response = await multipartMiddleware(new ServerRequest(), handler);Example
Input
----------------------------394107496171408467161617
Content-Disposition: form-data; name="id"
123e4567-e89b-12d3-a456-426655440000
----------------------------394107496171408467161617
Content-Disposition: form-data; name="name"
John Doe
----------------------------394107496171408467161617
Content-Disposition: form-data; name="address"
Content-Type: application/json
{
"street": "3, Garden St",
"city": "Hillsbery, UT"
}
----------------------------394107496171408467161617
Content-Disposition: form-data; name="red"; filename="red.png"
Content-Type: image/png
<binary>
----------------------------394107496171408467161617
Content-Disposition: form-data; name="green"; filename="green.png"
Content-Type: image/png
<binary>
----------------------------394107496171408467161617
Content-Disposition: form-data; name="blue"; filename="blue.png"
Content-Type: image/png
<binary>
----------------------------394107496171408467161617--Output
Optimized for human readability
id=123e4567-e89b-12d3-a456-426655440000&
name=John Doe&
address={\r\n "street": "3, Garden St",\r\n "city": "Hillsbery, UT"\r\n}&
red=/tmp/multipart/.../...; filename=red.png; mimeType=image/png&
green=/tmp/multipart/.../...; filename=green.png; mimeType=image/png&
blue=/tmp/multipart/.../...; filename=blue.png; mimeType=image/png&Copyright
2025 Dominik Zogg
