New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@zhike/koa2-upload

Package Overview
Dependencies
Maintainers
12
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@zhike/koa2-upload

A middleware for koa2 to handle file upload based on formidable

  • 1.0.9
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
12
Created
Source

koa2-upload

基于formidable的,适用于koa2的处理文件上传的中间件

安装

npm i --save @zhike/koa2-upload

使用方法

  const koa = require('koa');
  const app = new Koa();

  const fileHandler = require('koa2-upload');

  app.use(fileHandler({ autoDelete: true }))

  app.use(async (ctx)=>{

    // ctx.fields
    // ctx.files

  })

Options

  • stream: 默认值 false , 设置为true会将上传文件流挂载在ctx.files[key].stream中

  • autoDelete: 默认值 false ,设置为true在请求结束之后会删除本地缓存文件

  • uploadDir: 设置为文件保存路径

  • maxFileSize: 设置上传文件最大字节数

Keywords

FAQs

Package last updated on 31 May 2019

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