Skip to content

Instantly share code, notes, and snippets.

@TerryMooreII
Created September 19, 2017 14:54
Show Gist options
  • Save TerryMooreII/39d2c9aa30650370ab9b31f88c5a28c5 to your computer and use it in GitHub Desktop.
Save TerryMooreII/39d2c9aa30650370ab9b31f88c5a28c5 to your computer and use it in GitHub Desktop.
Screen shot website to base64
const webshot = require('webshot');
const streamToPromise = require('stream-to-promise')
var stream = webshot('www.google.com', {
screenSize: {
height:480,
width:600
}
});
streamToPromise(stream).then(data => console.log(data.toString('base64')));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment