How to receive the uploaded stream with fetch() upload stream ? #1729
-
https://chromestatus.com/feature/5274139738767360 In express, I can get stream data with app.post('/upload', (req, res) => {
req.on('data', (chunk) => {
//
});
}); How can I get stream data in Koa.js? |
Beta Was this translation helpful? Give feedback.
Answered by
jonathanong
Aug 29, 2024
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jonathanong
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ctx.req.on('data', (chunk) => {})