How can I view the html in the in the browser? Nothing shows on the localhost:3000.
const jsdom = require("jsdom");
const { JSDOM } = jsdom;
const dom = new JSDOM(`<!DOCTYPE html><body><p id="main">My First JSDOM!</p></body>`,
{
url: "http://localhost:3000/",
contentType: "text/html",
pretendToBeVisual: true,
}
);
From the comment I gather you want to manipulate the DOM in JSDOM in node and then (maybe) write an html file (or return it in a response)
For that use
serialize()
https://github.com/jsdom/jsdom#serializing-the-document-with-serialize
So with your example:
JSDom will give you a string for all your HTML. You can then use Express.js to create a server that may return that HTML or you use the string to write an HTML file to disk.