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 🙏

© 2024 – Pkg Stats / Ryan Hefner

fastify-busboy

v1.1.0

Published

[![Continuous Integration](https://github.com/climba03003/fastify-busboy/actions/workflows/ci.yml/badge.svg)](https://github.com/climba03003/fastify-busboy/actions/workflows/ci.yml) [![Package Manager CI](https://github.com/climba03003/fastify-busboy/acti

Downloads

129

Readme

fastify-busboy

Continuous Integration Package Manager CI NPM version GitHub package.json version GitHub

This plugin add a handy parser for multipart/form-data by using busboy and provide a better integration between multipart/form-data and fastify-swagger

You can checkout fastify-formidable if you prefer using formidable. Or @fastify/multipart if you prefer offcial plugin.

Install

npm install fastify-busboy --save

yarn add fastify-busboy

Usage

import FastifyBusboy, { kFileSavedPaths, kIsMultipart, kIsMultipartParsed } from 'fastify-busboy'

fastify.register(FastifyBusboy)

fastify.post('/', async function(request, reply) {
  // you need to call the parser if you do not pass any option through plugin registration
  await request.parseMultipart()

  // access files
  request.files

  // access body
  // note that file fields will exist in body and it will becomes the file path saved on disk
  request.body

  // access all the files path
  request[kFileSavedPaths]

  // check if it is multipart
  if( request[kIsMultipart] === true ) {}

  // check if it is already parsed
  if ( request[kIsMultipartParsed] === true ) {}
})

// add content type parser which will automatic parse all `multipart/form-data` found
fastify.register(FastifyBusboy, {
  addContentTypeParser: true
})

// add `preValidation` hook which will automatic parse all `multipart/form-data` found
fastify.register(FastifyBusboy, {
  addHooks: true
})

Options

options.busboy

The options which will be directly passed to busboy.

import FastifyBusboy from 'fastify-busboy'

fastify.register(FastifyBusboy, {
  busboy: {
    limits: {
      fileSize: 1000
    },
  },
  // this folder will be automatic created by this plugin
  uploadDir: '/'
})

See: busboy

options.removeFilesFromBody

This options will not add any files fields to body when enabled.

import FastifyBusboy from 'fastify-busboy'

fastify.register(FastifyBusboy, {
  removeFilesFromBody: true
})

Error Handling

You can handle the error from either setErrorHandler or using try-catch with request.parseMultipart()

import FastifyBusboy from 'fastify-busboy'

fastify.register(FastifyBusboy)

fastify.post('/', async function(request, reply) {
  try {
    // you need to call the parser if you do not pass any option through plugin registration
    await request.parseMultipart()
  } catch (err) {
    switch(err.code) {
      case 'FST_BB_FIELD_SIZE_LIMIT': {
        // field size limit reached
        break
      }
      case 'FST_BB_FIELDS_LIMIT': {
        // fields limit reached
        break
      }
      case 'FST_BB_FILE_SIZE_LIMIT': {
        // file size limit reached
        break
      }
      case 'FST_BB_FILES_LIMIT': {
        // files limit reached
        break
      }
      case 'FST_BB_PARTS_LIMIT': {
        // parts limit reached
        break
      }
      default: {
        // unknown error
        // maybe write stream error
      }
    }
  }
})

fastify.setErrorHandler(function(err) {
  switch(err.code) {
    case 'FST_BB_FIELD_SIZE_LIMIT': {
      // field size limit reached
      break
    }
    case 'FST_BB_FIELDS_LIMIT': {
      // fields limit reached
      break
    }
    case 'FST_BB_FILE_SIZE_LIMIT': {
      // file size limit reached
      break
    }
    case 'FST_BB_FILES_LIMIT': {
      // files limit reached
      break
    }
    case 'FST_BB_PARTS_LIMIT': {
      // parts limit reached
      break
    }
    default: {
      // unknown error
      // maybe write stream error
    }
  }
})

Integration

It is a known limitation for fastify-multipart integrate with fastify-swagger and this plugin provide a relatively simple solution for the integration.

import Fastify from 'fastify'
import FastifyBusboy, { ajvBinaryFormat } from 'fastify-busboy'
import FastifySwagger from 'fastify-swagger'

const fastify = Fastify({
  ajv: {
    plugins: [ ajvBinaryFormat ]
  }
})

fastify.register(FastifyBusboy, {
  addContentTypeParser: true
})

fastify.register(FastifySwagger)