SyntaxFix
Write A Post
Hire A Developer
Questions
You can use jsdom
const jsdom = require("jsdom"); const { JSDOM } = jsdom; const { document } = (new JSDOM(`...`)).window;
or, take a look at cheerio, it may more suitable in your case.