Skip to content

Instantly share code, notes, and snippets.

@satyapendem
Created June 29, 2018 06:16
Show Gist options
  • Save satyapendem/628b81dcc8c461d07333d0b41e32c415 to your computer and use it in GitHub Desktop.
Save satyapendem/628b81dcc8c461d07333d0b41e32c415 to your computer and use it in GitHub Desktop.
load html with jsdom
require('jsdom-global')();
const fs = require('fs');
global.document = window.document;
var htmlString = fs.fs.readFileSync('demo.html').toString();
document.documentElement.innerHTML = htmlString;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment