Node doit prendre en charge l'utilisation de la variable d'environnement http_proxy - c'est donc multiplateforme et fonctionne sur les paramètres du système plutôt que d'exiger une configuration par application.
En utilisant les solutions fournies, je recommanderais ce qui suit:
Coffeescript
get_url = (url, response) ->
if process.env.http_proxy?
match = process.env.http_proxy.match /^(http:\/\/)?([^:\/]+)(:([0-9]+))?/i
if match
http.get { host: match[2], port: (if match[4]? then match[4] else 80), path: url }, response
return
http.get url, response
Javascript
get_url = function(url, response) {
var match;
if (process.env.http_proxy != null) {
match = process.env.http_proxy.match(/^(http:\/\/)?([^:\/]+)(:([0-9]+))?/i);
if (match) {
http.get({
host: match[2],
port: (match[4] != null ? match[4] : 80),
path: url
}, response);
return;
}
}
return http.get(url, response);
};
Utilisation
Pour utiliser la méthode, remplacez simplement http.get, par exemple, ce qui suit écrit la page d'index de google dans un fichier appelé test.htm:
file = fs.createWriteStream path.resolve(__dirname, "test.htm")
get_url "http://www.google.com.au/", (response) ->
response.pipe file
response.on "end", ->
console.log "complete"