NodeJS By Examples

jQuery inside NodeJS

var jsdom = require("jsdom");

$ = require("jquery")(jsdom.jsdom().parentWindow);

$(html).find("<h1>").html("The title");