next.js/test/integration/api-support/pages/api/test-res-pipe.js
test-res-pipe.js11 lines228 B
import fetch from 'node-fetch'

export default async (req, res) => {
  const dataRes = await fetch(
    `http://localhost:${req.query.port}/api/query?hello=from-pipe`
  )

  res.status(dataRes.status)
  dataRes.body.pipe(res)
}
Quest for Codev2.0.0
/
SIGN IN