Skip to content

Instantly share code, notes, and snippets.

@michaelrhodes
Created September 24, 2014 07:49
Show Gist options
  • Save michaelrhodes/385887d4744a82ba63e4 to your computer and use it in GitHub Desktop.
Save michaelrhodes/385887d4744a82ba63e4 to your computer and use it in GitHub Desktop.
Using domify on the server.
var sandboxed = require('sandboxed-module')
var domino = require('domino')
var domify = sandboxed.require('domify', {
globals: { document: domino.createDocument() }
})
var el = domify('<p>Hello, Dexter Morgan</p>')
el.classList.add('message')
console.log(el.outerHTML)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment