import * as jsdom from "jsdom"; const html = "<h1>Testing<h1>"; const text = new jsdom.JSDOM(html).window.document.textContent; console.log(text);