rendfetch
v2.1.0
Published
Request a webpage and render and return the rendered HTML and JS
Downloads
2
Maintainers
Readme
rendfetch
Installation
npm i rendfetch
Description
Request a webpage and return the rendered HTML after evaluation of the JavaScript.
Usage
const rendfetch = require('rendfetch');
rendfetch("https://allegiancefinance.herokuapp.com").then(html => {
console.log(html);
});