Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/formidable

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/formidable

TypeScript definitions for formidable

  • 1.2.8
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
517K
decreased by-22.94%
Maintainers
1
Weekly downloads
 
Created

What is @types/formidable?

@types/formidable provides TypeScript type definitions for the formidable package, which is used for parsing form data, especially file uploads.

What are @types/formidable's main functionalities?

Parsing Form Data

This feature allows you to parse incoming form data, including file uploads. The `form.parse` method takes a request object and a callback function that handles the parsed fields and files.

const formidable = require('formidable');
const form = new formidable.IncomingForm();
form.parse(req, (err, fields, files) => {
  if (err) {
    console.error(err);
    return;
  }
  console.log('Fields:', fields);
  console.log('Files:', files);
});

Handling File Uploads

This feature allows you to handle file uploads by specifying an upload directory. The `uploadDir` property sets the directory where uploaded files will be stored.

const formidable = require('formidable');
const form = new formidable.IncomingForm();
form.uploadDir = '/path/to/upload/directory';
form.parse(req, (err, fields, files) => {
  if (err) {
    console.error(err);
    return;
  }
  console.log('Uploaded files:', files);
});

Customizing File Uploads

This feature allows you to customize the file upload process. The `fileBegin` event is triggered when a file upload starts, allowing you to set a custom file path.

const formidable = require('formidable');
const form = new formidable.IncomingForm();
form.on('fileBegin', (name, file) => {
  file.path = '/custom/path/' + file.name;
});
form.parse(req, (err, fields, files) => {
  if (err) {
    console.error(err);
    return;
  }
  console.log('Custom file path:', files);
});

Other packages similar to @types/formidable

FAQs

Package last updated on 07 Nov 2023

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc