Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Maltypart is a simple multipart request builder.
It is very similar to HTML5 FormData, but offers a bit more control over fields and serialization.
Maltypart is a good fit if your app needs to work with multipart form submissions, but you don't want to couple networking logic to your HTML. It supports a few nice additions that FormData doesn't offer, and can serialize Strings, Files, Elements and more.
Creating a new RequestBody:
// Pull in the dependency however you wish: AMD, CJS, Node and globals are all supported
var RequestBody = require('maltypart').RequestBody;
// Create a new multipart body:
var request = new RequestBody();
Appending Strings:
// request is from the first example
request.append({
// String values get serialized with the default content-type, application/octet-stream:
some_key : "some value",
// Passing an Object or Array to append() lets you specify multiple fields at once
second_key : "second value"
});
Appending Typed Content:
request.append('example_image', {
// Specify an Object with "contentType" and "data" properties to set your own content-type:
contentType : "image/png",
// Base64-encoded data as a String:
data : "iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAABlBMVEUAAAD"
+ "///+l2Z/dAAAAM0lEQVR4nGP4/5/h/1+G/58ZDrAz3D/McH8yw83NDDe"
+ "NGe4Ug9C9zwz3gVLMDA/A6P9/AFGGFyjOXZtQAAAAAElFTkSuQmCC"
// You can also pass a maltypart.RequestField instead of a POJO.
});
Appending a File:
request.append('some_file', new File(), function() {
// file added.
});
Using with XMLHttpRequest:
// A standard XHR
var xhr = new XMLHttpRequest();
xhr.open('POST', '/upload', true);
// Set the request's content-type appropriately:
xhr.setRequestHeader('Content-Type', request.getContentType());
// Set the multipart-encoded body:
xhr.send( request.getData() );
Via node / browserify:
var maltypart = require('maltypart');
Via AMD / requirejs:
define(['maltypart'], function(maltypart) {
});
Via globals / script tag:
<script src="maltypart.js"></script>
<script>
maltypart; // now it's exposed as a "maltypart" global
</script>
Installation via Bower: (Recommended)
bower install maltypart
Manual Download:
BSD
FAQs
Maltypart is a simple multipart request builder.
We found that maltypart demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.