Obtendo cabeçalhos HTTP com node.js

xiste uma maneira integrada de obter os cabeçalhos de um endereço específico via node.j

algo como

var headers = getUrlHeaders("http://stackoverflow.com");

retornari

HTTP/1.1 200 OK.
Cache-Control: public, max-age=60.
Content-Type: text/html; charset=utf-8.
Content-Encoding: gzip.
Expires: Sat, 07 May 2011 17:32:38 GMT.
Last-Modified: Sat, 07 May 2011 17:31:38 GMT.
Vary: *.
Date: Sat, 07 May 2011 17:31:37 GMT.
Content-Length: 32516.

questionAnswers(6)

yourAnswerToTheQuestion