Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
取得する方法は、ブラウザ側のjavascriptでHTTP_REFERER使用できます。document.referrerしかし、NodeJSでどのように取得できますか?
HTTP_REFERER
document.referrer
あなたはそれを得ることができます...
req.headers.referer
の...
var http = require('http'); server = http.createServer(function(req, res){ ... }