// from https://gist.github.com/kt3k/6123515ff5d1e167f82dfe4aa12ee5d9 import { JSDOM } from "https://jspm.dev/jsdom"; const doc = new JSDOM(`<!DOCTYPE html><p>Hello world</p>`); console.log(doc.window.document.querySelector("p").textContent);
deno run 'https://gist.githubusercontent.com/kt3k/6123515ff5d1e167f82dfe4aa12ee5d9/raw/f27520c629e56ab6e53e411c455ecc289300bb28/jsdom-in-deno.ts'
I'd need more info about your problem but I'm not convinced that Deno's the problem and if there is one.
I'd need more info about your problem but I'm not convinced that Deno's the problem and if there is one.