npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

form-data2

v1.0.4

Published

A Streams2-compatible drop-in replacement for the `form-data` module.

Readme

form-data2

A Streams2-compatible drop-in replacement for the form-data module. Through the wrapping done by the underlying combined-stream2 module, old-style streams are also supported.

Takes a number of streams or Buffers, and turns them into a valid multipart/form-data stream.

License

WTFPL or CC0, whichever you prefer. A donation and/or attribution are appreciated, but not required.

Donate

My income consists entirely of donations for my projects. If this module is useful to you, consider making a donation!

You can donate using Bitcoin, PayPal, Gratipay, Flattr, cash-in-mail, SEPA transfers, and pretty much anything else.

Contributing

Pull requests welcome. Please make sure your modifications are in line with the overall code style, and ensure that you're editing the .coffee files, not the .js files.

Build tool of choice is gulp; simply run gulp while developing, and it will watch for changes.

Be aware that by making a pull request, you agree to release your modifications under the licenses stated above.

Migrating from form-data

While form-data2 was designed to be roughly API-compatible with the form-data module, there are a few notable differences:

  • form-data2 does not do HTTP requests. It is purely a multipart/form-data encoder. This means you should use a different module for your HTTP requests, such as bhttp, request, or the core http module. bhttp uses form-data2 internally - that means you won't have to manually use form-data2.
  • The header option for the form.append() options object is not (yet) implemented. This means that you cannot currently set custom field headers.
  • There is no form.getLengthSync() method. Length retrieval is always asynchronous.
  • The form.getHeaders method is always asynchronous (whereas in the original form-data, it is synchronous). Due to the requirements for obtaining the stream length reliably, there is no synchronous equivalent.
  • A form-data2 stream is not a real stream. Only the form.pipe() method is implemented, other stream methods are unavailable. This may change in the future.

Usage

var FormData = require('form-data2');
var fs = require('fs');

var form = new FormData();
form.append('my_field', 'my value');
form.append('my_buffer', new Buffer(10));
form.append('my_file', fs.createReadStream('/foo/bar.jpg'));

Getting the HTTP headers

Promise = require("bluebird");
util = require("util");

Promise.try(function(){
	form.getHeaders();
}).then(function(headers){
	console.log("Stream headers:", util.inspect(headers));
}).catch(function(err){
	console.log("Something went wrong!");
});

... or using nodebacks:

form.getHeaders(function(err, headers){
	if(err) {
		console.log("Something went wrong!");
	} else {
		console.log("Stream headers:", util.inspect(headers));
	}
});

API

Note that this is not a real stream, and does therefore not expose the regular stream.Readable properties. The pipe method will simply pipe the underlying combined-stream2 stream into the specified target. If you want to access the stream directly for some reason, use form._stream.

append(name, source, [options])

Adds a new data source to the multipart/form-data stream.

This module will not automatically handle arrays for you - if you need to send an array, you will need to call this method for each element individually, using the same []-suffixed field name for each element.

  • name: The name of the form field.
  • source: The data source to add. This can be a stream, a Buffer, or a UTF-8 string.
  • options: Optional. Additional options for the stream.
    • contentLength: The total length of the stream. Useful if your stream is of a type that stream-length can't automatically determine the length of. Also available under the alias knownLength, for backwards compatibility reasons.
    • contentType: The MIME type of the source. It's recommended to always specify this manually; however, if it's not supplied, form-data2 will attempt to determine it for you where possible.
    • filename: The filename of the source, if it is a file or should be represented as such. It's recommended to always specify this manually (if the source is a file of some sort); however, if it's not supplied, form-data2 will attempt to determine it for you where possible.

getHeaders([callback])

Asynchronously returns the HTTP request headers that you will need to successfully transmit this stream, as an object.

All object keys are lower-case. To use the headers, simply merge them into the headers object for your request.

If you specify a callback, it will be treated as a nodeback. If you do not specify a callback, a Promise will be returned.

pipe(target)

Pipes the multipart/form-data stream into the target stream.

done()

You probably don't need to call this.

Calling this method will append the multipart/form-data footer to the stream. It is called automatically when you pipe the stream into something else.

getBoundary()

You probably don't need to call this.

Returns the form boundary used in the multipart/form-data stream.

getLength([callback])

You probably don't need to call this.

Asynchronously returns the total length of the stream in bytes.

If you specify a callback, it will be treated as a nodeback. If you do not specify a callback, a Promise will be returned.

Changelog

v1.0.4 (February 18, 2020)

  • Added this changelog to the README
  • Removed Lodash, resolving the audit warnings
  • Removed CoffeeScript
  • Removed Gulp

v1.0.3 (March 17, 2015)

  • Added documentation about asynchronicity of form.getHeaders

v1.0.2 (January 23, 2015)

  • Fixed packaging mistake (again)

v1.0.1 (January 23, 2015)

  • Fixed packaging mistake

v1.0.0 (January 22, 2015)

Initial release.