How do I find the a referring sites URL in node?
I\'m using express, would I find this in the headers on connect or something?
Thanks!
If you mean how do you get it when running an express server, then it's done using the header method on your request:
req.header('Referer'); // => "http://google.com"