jparser
v0.0.2
Published
A jquery-like library for parse html file for server environment
Readme
A library branch from jQuery, but it only focus on parse HTML file for server environment.
var $ = require('jparser');
var root = $('<html><head></head><body><h1>Hello World!</h1></body></html>');
console.log(root.find('h1').text());Installation
$ npm install jparser
