@remix-run/multipart-parser 0.12.0 → 0.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2024 Michael Jackson
3
+ Copyright (c) 2025 Shopify Inc.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  `multipart-parser` is a fast, streaming multipart parser that works in **any JavaScript environment**, from serverless functions to traditional servers. Whether you're handling file uploads, parsing email attachments, or working with multipart API responses, `multipart-parser` has you covered.
4
4
 
5
- ## 🚀 Why multipart-parser?
5
+ ## Why multipart-parser?
6
6
 
7
7
  - **Universal JavaScript** - One library that works everywhere: Node.js, Bun, Deno, Cloudflare Workers, and browsers
8
8
  - **Blazing Fast** - Consistently outperforms popular alternatives like busboy in benchmarks
@@ -12,14 +12,14 @@
12
12
  - **Standards Based** - Built on the web standard [Streams API](https://developer.mozilla.org/en-US/docs/Web/API/Streams_API) for maximum compatibility
13
13
  - **Production Ready** - Battle-tested error handling with specific error types for common scenarios
14
14
 
15
- ## 📦 Features
15
+ ## Features
16
16
 
17
- - Parse file uploads (`multipart/form-data`) with automatic field and file detection
18
- - Support for all `multipart/*` content types (mixed, alternative, related, etc.)
19
- - Convenient `MultipartPart` API with `arrayBuffer`, `bytes`, `text`, `size`, and metadata access
20
- - Built-in file size limiting to prevent abuse
21
- - First-class Node.js support with native `http.IncomingMessage` compatibility
22
- - [Demos for every major runtime](https://github.com/remix-run/remix/tree/main/packages/multipart-parser/demos)
17
+ - **File Upload Parsing** - Parse file uploads (`multipart/form-data`) with automatic field and file detection
18
+ - **Full Multipart Support** - Support for all `multipart/*` content types (mixed, alternative, related, etc.)
19
+ - **Convenient API** - `MultipartPart` API with `arrayBuffer`, `bytes`, `text`, `size`, and metadata access
20
+ - **File Size Limiting** - Built-in file size limiting to prevent abuse
21
+ - **Node.js Support** - First-class Node.js support with native `http.IncomingMessage` compatibility
22
+ - **Runtime Demos** - [Demos for every major runtime](https://github.com/remix-run/remix/tree/main/packages/multipart-parser/demos)
23
23
 
24
24
  ## Installation
25
25