| 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) | |
| } | |
| 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) | |
| } | |