express-http-proxy
express-http-proxy copied to clipboard
DNS_PROBE_FINISHED_NXDOMAIN
My code
var proxy = require("express-http-proxy");
var app = require("express")();
const port = 3000;
app.use("/", proxy("www.google.com"));
app.listen(port, () => {
console.log(`Example app listening at http://localhost:${port}`);
});
Error

Add the letter 'L' between letters 'A' and 'H' on your 'locahost' spelling which should be 'localhost'.