You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So what I am trying to achieve is handle multipart/form-data with files, such that the file is not saved on disk. I need a stream/the content of files for parsing them further on, without having to go touch the file system.
The recommended way for Formidable is by providing a callback on each processed part, and then do an operation on the provided part (see https://stackoverflow.com/a/8760340/11599033). This requires setting onPart, but koa-body does not expose this?
My request is to either provide this option, or allow me to set my own Formidable object that I can modify on my own.
Feature Request Summary
So what I am trying to achieve is handle
multipart/form-data
with files, such that the file is not saved on disk. I need a stream/the content of files for parsing them further on, without having to go touch the file system.The recommended way for Formidable is by providing a callback on each processed part, and then do an operation on the provided part (see https://stackoverflow.com/a/8760340/11599033). This requires setting
onPart
, butkoa-body
does not expose this?My request is to either provide this option, or allow me to set my own Formidable object that I can modify on my own.
This request is similar to #36
Environment Information
The text was updated successfully, but these errors were encountered: