Multiparser
A Deno module for parsing multipart/form-data
Note: Multiparser V2 is out!
Features:
- Very simple API
- Upload options
- Much faster than deno standard library
Documentation
Multiparser version 2 aims to have better performance than V1. Since V1 is dependent on deno@std entirely, which is very unstable. So Multiparser V2 has less dependencies, and it's much faster!
Usage
// multiParser
import { multiParserV2, FormV2, FormFileV2 } from 'https://deno.land/x/multiparser@v2.0.1/mod.ts'
const form = await multiParserV2(request)
Where:
request: serverRequest
is a raw server request coming from Deno http module.
Result:
- success, return
Form
- fail, return
undefined
Form
Definition:
interface Form {
fields: Record<string, string>;
files: Record<string, FormFileV2 | FormFileV2[]>;
}
Basic Example:
Suppose your form has two fields, the first one has field name singleStr
with text "this is string value" only, and the second field called singleImg
with a img file named "singleImg.png".
import { serve } from "https://deno.land/std@0.61.0/http/server.ts";
import { multiParser } from 'https://deno.land/x/multiparser@v2.0.1/mod.ts'
const s = serve({ port: 8000 });
for await (const req of s) {
if (req.url === "/upload") {
const form = await multiParser(req)
if (form) {
console.log(form)
}
}
req.respond({
headers: new Headers({ "Content-Type": "text/html; charset=utf-8" }),
body: `
<h3>Deno http module</h3>
<form action="/upload" enctype="multipart/form-data" method="post">
<div>singleStr: <input type="text" name="singleStr" /></div>
<div>singleImg: <input type="file" name="singleImg"/></div>
<input type="submit" value="Upload" />
</form>
` });
}
After you upload the form, the returned value would be like below:
form = {
fields: {
<string>singleStr: "this is string value"
},
files: {
singleFile: {
<string>name: "singleFile",
<string>filename: "singleImg.png",
<string>contentType: "image/png",
<number>size: 11837,
<Uint8Array>content: [...]
}
}
}
Some times you may have multiple files in a field, the best practice is to cast it as an array FormFileV2[]
import { FormFile } from "https://deno.land/x/multiparser@v2.0.1/mod.ts";
const multipleFiles = form.files.multipleFiles as FormFile[]
With Oak framework
import { Application, Context } from "https://deno.land/x/oak@6.0.0/mod.ts";
import { multiParser } from 'https://deno.land/x/multiparser@v2.0.2/mod.ts'
const app = new Application();
app.use(async (ctx) => {
if (ctx.request.url.pathname === '/upload') {
const form = await multiParser(ctx.request.serverRequest)
if (form) {
console.log(form)
}
}
ctx.response.headers.set("Content-Type", "text/html; charset=utf-8")
ctx.response.body = `
<h3>Deno Oak framework</h3>
<form action="/upload" enctype="multipart/form-data" method="post">
<div>Text field title: <input type="text" name="title" /></div>
<div>File: <input type="file" name="singleFile"/></div>
<input type="submit" value="Upload" />
</form>
`
});
await app.listen({ port: 8000 });