
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
nested-formdata
Advanced tools
This is a JavaScript utility function that converts JavaScript nested objects into FormData. It's beneficial when you need to send your data to the server in `multipart/form-data` format. This utility is built with TypeScript and Lodash.
This is a JavaScript utility function that converts JavaScript nested objects into FormData. It's beneficial when you need to send your data to the server in multipart/form-data
format. This utility is built with TypeScript and Lodash.
To install this package, use the following command:
npm install nested-formdata
First, import the function into your JavaScript or TypeScript file:
import { objectToFormData } from 'nested-formdata';
You can then use the objectToFormData function to convert an objects or array of objects to FormData:
const data = {
name: 'John Doe',
age: 30,
photo: File // This can be an instance of File Or array of Files
};
const formData = objectToFormData(data);
You can also handle nested objects:
const data = {
name: 'John Doe',
age: 30,
address: {
city: 'New York',
state: 'NY'
array: [1, 2, 3],
image: File,
}
};
const formData = objectToFormData(data);
objectToFormData(obj, form, namespace)
obj
(Object): The object to convert.form
(FormData, optional): Existing FormData to use.namespace
(String, optional): Namespace to prefix keys with.Pull requests are welcome. Please make sure to update tests as appropriate.
This project is licensed under the MIT License.
FAQs
This is a JavaScript utility function that converts JavaScript nested objects into FormData. It's beneficial when you need to send your data to the server in `multipart/form-data` format. This utility is built with TypeScript and Lodash.
We found that nested-formdata demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.