Reputation: 11073
I am using node.js proxy. It works successfully, however:
proxy.on('proxyResponse', function (proxyRes, req, res) {
console.log("hi");
});
Never fires even though I see in the browser my api request was proxied successfully and I successfully got my json. Why isn't the proxyResponse
firing?
Upvotes: 0
Views: 769