UNPKG

toxy

Version:

Hackable HTTP proxy to simulate server failure scenarios and network conditions

10 lines (8 loc) 211 B
const toxy = require('../..') const timeout = 30 * 1000 toxy({ timeout: timeout, proxyTimeout: timeout }) .forward('http://httpbin.org') .listen(9000) .post('*') .host('httpbin.org') .toPath('/post')