UNPKG
koa-even-better-http-proxy
Version:
latest (0.4.2)
0.4.2
0.4.1
0.4.0
0.3.0
0.2.9
0.2.8
0.2.5
http proxy middleware for Koa
gitlab.com/Keymandll/koa-even-better-http-proxy
koa-even-better-http-proxy
/
test
/
mockHTTP.js
11 lines
(7 loc)
•
183 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
express
from
'express'
;
const
app =
express
(); app.
use
(
'/status/:status'
,
(
req, res
) =>
{ res.
status
(
Number
(req.
params
.
status
)); res.
send
(); });
export
default
app;