Socket
Socket
Sign inDemoInstall

parse5-utils

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

parse5-utils

Low-level parse5 node manipulation utilities.


Version published
Weekly downloads
2.7K
decreased by-9.29%
Maintainers
1
Weekly downloads
 
Created
Source

parse5-utils

NPM version Build status Test coverage Dependency Status License Downloads

Low-level parse5 node manipulation utilities.

API

const utils = require('parse5-utils')

let document = utils.parse(html, [smart])

Parse an HTML string, If smart, returns a document or documentFragment, appropriately. Otherwise, always parses it as a document.

let fragment = utils.parseFragment(html)

Parses HTML as a fragment.

let html = utils.serialize(document || fragment)

Converts an AST into an HTML string.

let attributes = utils.attributesOf(node)

Get the attributes of a node as an object.

setAttribute(node, key, value)

Set an attribute of a node.

getAttribute(node, key)

Get the attribute of a node.

node.attrs = utils.toAttrs(attributes)

Set a node's attributes from an object.

let node = utils.createNode(tagName)

Create a node with a specific tag name.

let textNode = utils.createTextNode(text)

Create a text node.

node = utils.prepend(parent, node)

Add a child to a node, making it the first child.

node = utils.append(parent, node)

Add a child to a node, making it the last child.

node = utils.replace(originalNode, newNode)

Replace a node with another node.

node = utils.remove(node)

Remove a node.

nodes = utils.flatten(node || [nodes])

Get all the nodes in a tree as a flat array.

let text = utils.textOf(node)

Get the text of a node.

utils.setText(node, text)

Set the text of a node.

Keywords

FAQs

Package last updated on 19 Sep 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc