sizzlify
v1.0.2
Published
A mini hack to embed Sizzle in nodejs
Downloads
5
Readme
sizzlify
A mini hack to embed Sizzle in nodejs, under the MIT licence
Install
npm install sizzlify
Usage
var
sizzlify,
xmldom,
document;
sizzlify = require('sizzlify');
xmldom = require('xmldom');
document = xmldom.parseFromString(`<!DOCTYPE html><html><body></body></html>`);
sizzlify('html > body', document);