Skip to content

Koa middleware for auto cleanup files created to disk by koa-body, koa-better-body, koa-multer or any multipart middleware that populate ctx.*.files.

License

Notifications You must be signed in to change notification settings

rferro/koa-body-clean

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

koa-body-clean

node npm tests codecov deps ddeps standard

Koa middleware for auto cleanup files created to disk by:

The middleware will automatically remove any file in temporary location upon response end, throws or close.

Please report any issues!

Installation

Requires:

  • node >= 7.6.x
  • koa >= 2
$ npm install koa-body-clean

Usage

const bodyClean = require('koa-body-clean')

Example

const body = require('koa-body') // or koa-better-body, koa-multer, ...
const bodyClean = require('koa-body-clean')
const Koa = require('koa')

const app = new Koa()

app.use(body(bodyOptions))
app.use(bodyClean())

Skipping files

To skip a file from removal, set skip attribute to true in file object.

License

MIT

About

Koa middleware for auto cleanup files created to disk by koa-body, koa-better-body, koa-multer or any multipart middleware that populate ctx.*.files.

Resources

License

Stars

Watchers

Forks

Packages

No packages published