Socket
Socket
Sign inDemoInstall

formdata-to-string

Package Overview
Dependencies
0
Maintainers
10
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    formdata-to-string

Transform a FormData object into a raw string


Version published
Weekly downloads
329
decreased by-34.85%
Maintainers
10
Install size
27.7 kB
Created
Weekly downloads
 

Readme

Source

formdata-to-string

Transform a FormData instance into a raw string.

Build

Installation

npm install --save formdata-to-string

Usage

This library is built up of internal methods from within Node's internal fetch library, undici for transforming a FormData instance into something that can be supplied in a fetch request. The purpose of this is to silo the conversion and stream reading aspect of that process so that output can be used in other methods (eg. unit testing, code snippet generation, etc.).

import formDataToString from 'formdata-to-string';
// const { default: formDataToString } = require('formdata-to-string');

const form = new FormData();
form.append('dog', 'buster');
form.append('age', '18');

console.log(await formDataToString(form));
------formdata-undici-089527285518
Content-Disposition: form-data; name="dog"

buster
------formdata-undici-089527285518
Content-Disposition: form-data; name="age"

18
------formdata-undici-089527285518--

It also supports File and Blob objects that can be supplied to the FormData API:

const form = new FormData();

const dataURL = 'data:image/png;name=owlbert.png;base64,iVBORw0KGgo...';
form.append('image', new Blob([dataURL], { type: 'image/png' }), 'owlbert.png');

console.log(await formDataToString(form));
------formdata-undici-075655755345
Content-Disposition: form-data; name="image"; filename="owlbert.png"
Content-Type: image/png

data:image/png;name=owlbert.png;base64,iVBORw0KGgo...
------formdata-undici-075655755345--

FAQs

Last updated on 08 Nov 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc