fetch-document
v1.0.0
Published
A simple package which fetches the DOM from any given url.
Maintainers
Readme
fetch-document
fetch-document is a very simple package for fetching the DOM of a web page.
Usage
const fetchDOM = require("fetch-document");
(async () => {
var document = await fetchDOM("https://www.example.com");
})();