how to use busboy with Nextjs 13 api POST

90 Views Asked by At

I want to create Nextjs api route which allow to upload file from client and save file locally using busboy with stream to receiving large file.

But the problem is NextJs show me an error req.pipe is not a function

how to handle this situation?


export async function POST(req, { params }){


    const bb = busboy({ 
        headers: {
            ...req.headers,
            'content-type': req.headers.get('Content-type')
        }
     })

     bb.on('file', (name, stream, info) => {
        console.log('onfile')
        // handle file stream with fs
     })

     req.pipe(bb) // error occured from here

   
    return NextResponse.json({ success: true })
} 

I found a solution which use Readable from stack overflow

But the problem is it is not working as stream and Readable.fromWeb(req.body) read all things from body and pipe to busboy


import { Readable } from 'node:stream';
export async function POST(req, { params }){
    const bb = busboy({ 
        headers: {
            ...req.headers,
            'content-type': req.headers.get('Content-type')
        }
     })

     bb.on('file', (name, stream, info) => {
        console.log('onfile')
     })


     Readable.fromWeb(req.body).pipe(bb); // by using Readable

    return NextResponse.json({ success: true })
} 
0

There are 0 best solutions below