Skip to content

Instantly share code, notes, and snippets.

@harunhasdal
Created July 28, 2014 12:19
Show Gist options
  • Save harunhasdal/bf690a539664df651a43 to your computer and use it in GitHub Desktop.
Save harunhasdal/bf690a539664df651a43 to your computer and use it in GitHub Desktop.
Download favicon.ico from a website using NodeJS
var request = require("request");
var fs = require("fs");
request("https://github.com/favicon.ico").pipe(fs.createWriteStream('favicon.ico'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment