Im using Busboy with Express and Passport-JWT to upload file from my client , when the client is authorized with a valid JWT token everything works fine , but in cases that client is not authorized although error code 401 is sent to client but when i intercept incomming traffic to associated port in my ubuntu server(TCPDump) i see a load is getting in from that port . although all the listeners for uploading that file is inside /uploads route and its not clear where is the uploaded data is heading
Router.post("/",
passport.authenticate('jwt',{session:false}),
(req,res)=>{
try{
const busboy = createBusboy(req);
busboy.on("uploadFinished",(uploadedFiles:any)=>{
res.json(JSON.parse(uploadedFiles))
})
busboy.on("error",(err:any)=>{
console.log(err)
})
req.pipe(busboy);
}catch(e){
res.json({e})
}
})