How can I view html from the node console?

I have a javascript code that dumps an object, downloaded it from https://github.com/johan/node-dump.

Unfortunately, it prints an HTML, which is not very helpful, since I am working from the node console. How can I send this html output to some HTML rendering engine to display it visually? This could be a browser or a node plugin capable to display HTML snippets in a window.

I am on Windows 7.

EDIT

Guys, I do not need to beautify html. I want to render it.

Have you considered just using console.log() or console.dir() to print your object in the console in a human-readable format?