# object-to-formdata

> Serialize JavaScript objects into FormData.

Latest version **5.0.0** (published 2026-07-11) · MIT license · 0 weekly downloads

## Install

```sh
npm install object-to-formdata
pnpm add object-to-formdata
yarn add object-to-formdata
bun add object-to-formdata
```

## Health

**Score 65/100 (B)** — status: active.

Positive: has types; esm support; no vulnerabilities; recently updated; high quality score.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 5.0.0 |
| Published | 2026-07-11 |
| First published | 2016-09-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 13.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 384 |
| Author | Parmesh Krishen |
| Maintainers | therealparmesh |
| Keywords | form, formdata, javascript, object, object-to-formdata, submit |

## Links

- npm: https://www.npmjs.com/package/object-to-formdata
- Repository: https://github.com/therealparmesh/object-to-formdata
- Homepage: https://github.com/therealparmesh/object-to-formdata#readme
- Issues: https://github.com/therealparmesh/object-to-formdata/issues
- npm.io page: https://npm.io/package/object-to-formdata

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 5.0.0 (latest) — 2026-07-11
- 4.5.1 — 2023-05-12
- 4.5.0 — 2023-05-12
- 4.4.2 — 2022-02-12
- 4.4.1 — 2021-12-21
- 4.4.0 — 2021-12-21
- 4.3.0 — 2021-12-21
- 4.2.2 — 2021-11-27
- 4.2.1 — 2021-11-27
- 4.2.0 — 2021-11-25
- 4.1.1 — 2021-11-23
- 4.1.0 — 2020-07-23
- 4.0.1 — 2020-07-04
- 4.0.0 — 2020-07-03
- 3.0.9 — 2020-04-27
- … 50 more at https://npm.io/package/object-to-formdata/versions

## README

# object-to-formdata

[![npm version](https://img.shields.io/npm/v/object-to-formdata.svg)](https://www.npmjs.com/package/object-to-formdata)
[![npm downloads](https://img.shields.io/npm/dt/object-to-formdata.svg)](https://www.npmjs.com/package/object-to-formdata)
[![Bun CI](https://github.com/therealparmesh/object-to-formdata/actions/workflows/bun.yaml/badge.svg)](https://github.com/therealparmesh/object-to-formdata/actions/workflows/bun.yaml)
[![license](https://img.shields.io/npm/l/object-to-formdata.svg)](LICENSE)

Serialize JavaScript objects into `FormData`. Supports nested objects, arrays,
dates, files, blobs, and configurable key formatting with no runtime
dependencies.

## Installation

```sh
npm install object-to-formdata
```

Other package managers:

```sh
yarn add object-to-formdata
pnpm add object-to-formdata
bun add object-to-formdata
```

## Usage

```js
import { serialize } from "object-to-formdata";

const formData = serialize({
  name: "Ada",
  active: true,
  tags: ["admin", "editor"],
  profile: {
    age: 36,
  },
});

formData.get("name"); // "Ada"
formData.getAll("tags[]"); // ["admin", "editor"]
formData.get("profile[age]"); // "36"
```

CommonJS is also supported:

```js
const { serialize } = require("object-to-formdata");
```

TypeScript declarations are included with the package.

## API

### `serialize(object?, options?, existingFormData?, keyPrefix?)`

Serializes a value and returns a `FormData` instance.

#### `object`

The value to serialize. Objects and arrays are traversed recursively. Dates are
converted to ISO strings, while `File` and `Blob` values are appended directly.
`undefined` and symbol values are ignored.

Circular structures throw a `TypeError`.

#### `options`

| Option                          | Default | Description                                               |
| ------------------------------- | ------- | --------------------------------------------------------- |
| `indices`                       | `false` | Include array indices, such as `items[0]`.                 |
| `nullsAsUndefineds`             | `false` | Ignore `null` values instead of appending an empty string. |
| `booleansAsIntegers`            | `false` | Serialize booleans as `1` or `0`.                         |
| `allowEmptyArrays`              | `false` | Append an empty string for empty arrays.                   |
| `noAttributesWithArrayNotation` | `false` | Omit array notation from non-file array keys.              |
| `noFilesWithArrayNotation`      | `false` | Omit array notation from file array keys.                  |
| `dotsForObjectNotation`         | `false` | Use dots instead of brackets for nested object keys.       |

```js
const formData = serialize(
  {
    users: [{ name: "Ada" }, { name: "Grace" }],
  },
  {
    indices: true,
    dotsForObjectNotation: true,
  },
);

formData.get("users[0].name"); // "Ada"
```

#### `existingFormData`

An existing `FormData` instance to append to. The same instance is returned.

```js
const formData = new FormData();
formData.append("token", "abc123");

serialize({ name: "Ada" }, undefined, formData);
```

#### `keyPrefix`

An optional prefix for generated keys.

```js
const formData = serialize({ name: "Ada" }, undefined, undefined, "user");

formData.get("user[name]"); // "Ada"
```

## Runtime requirements

The runtime must provide `FormData`, either globally or through the
`existingFormData` argument. Modern browsers and supported Node.js releases
provide a global implementation.

## Development

Run the test suite:

```sh
bun run test
```

Inspect the package contents before publishing:

```sh
bun pm pack --dry-run
```

## License

[MIT](LICENSE)

---
_Source: https://npm.io/package/object-to-formdata · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
