用escplic编辑html,node-html-parser

A very fast HTML parser, generating a simplified DOM, with basic element query support.

Fast HTML Parser 0719eefed6f992ef18288a9e9ed5678a.pngnode-html-parser.svg?branch=master

Fast HTML Parser is a very fast HTML parser. Which will generate a simplified

DOM tree, with basic element query support.

Per the design, it intends to parse massive HTML files in lowest price, thus the

performance is the top priority. For this reason, some malformatted HTML may not

be able to parse correctly, but most usual errors are covered (eg. HTML4 style

no closing

, etc).

Install

npm install --save node-html-parser

Performance

Faster than htmlparser2!

fast-html-parser: 2.18409 ms/file ± 1.37431

high5 : 4.55435 ms/file ± 2.51132

htmlparser : 27.6920 ms/file ± 171.588

htmlparser2-dom : 6.22320 ms/file ± 3.48772

htmlparser2 : 3.58360 ms/file ± 2.23658

hubbub : 16.1774 ms/file ± 8.95079

libxmljs : 7.19406 ms/file ± 7.04495

parse5 : 10.7590 ms/file ± 8.09687

Usage

import { parse } from 'node-html-parser';

const root = parse('

  • Hello World
');

console.log(root.firstChild.structure);

// ul#list

// li

// #text

console.log(root.querySelector('#list'));

// { tagName: 'ul',

// rawAttrs: 'id="list"',

// childNodes:

// [ { tagName: 'li',

// rawAttrs: '',

// childNodes: [Object],

// classNames: [] } ],

// id: 'list',

// classNames: [] }

console.log(root.toString());

//

  • Hello World

root.set_content('

Hello World');

root.toString(); //

Hello Worldvar HTMLParser = require('node-html-parser');

var root = HTMLParser.parse('

  • Hello World
');

API

parse(data[, options])

Parse given data, and return root of the generated DOM.

data, data to parse

options, parse options

{

lowerCaseTagName: false, // convert tag name to lower case (hurt performance heavily)

script: false, // retrieve content in

style: false, // retrieve content in

pre: false, // retrieve content in

 (hurt performance slightly)

comment: false // retrieve comments (hurt performance slightly)

}

HTMLElement#text

Get unescaped text value of current node and its children. Like innerText.

(slow for the first time)

HTMLElement#rawText

Get escpaed (as-it) text value of current node and its children. May have

& in it. (fast)

HTMLElement#structuredText

Get structured Text

HTMLElement#trimRight()

Trim element from right (in block) after seeing pattern in a TextNode.

HTMLElement#structure

Get DOM structure

HTMLElement#removeWhitespace()

Remove whitespaces in this sub tree.

HTMLElement#querySelectorAll(selector)

Query CSS selector to find matching nodes.

Note: only tagName, #id, .class selectors supported. And not behave the

same as standard querySelectorAll() as it will stop searching sub tree after

find a match.

HTMLElement#querySelector(selector)

Query CSS Selector to find matching node.

HTMLElement#appendChild(node)

Append a child node to childNodes

HTMLElement#insertAdjacentHTML(where, html)

parses the specified text as HTML and inserts the resulting nodes into the DOM tree at a specified position.

HTMLElement#firstChild

Get first child node

HTMLElement#lastChild

Get last child node

HTMLElement#setAttribute(key: string, value: string)

Set value to key attribute.

HTMLElement#removeAttribute(key: string)

Remove key attribute.

HTMLElement#getAttribute(key: string)

Get key attrubte.

HTMLElement#toString()

HTMLElement#innerHTML

Get innerHTML.

HTMLElement#outerHTML

Get outerHTML.

HTMLElement#set_content(content: string | Node | Node[])

Set content. Notice: Do not set content of the root node.

HomePage

Repository

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值