Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

html2ast

Package Overview
Dependencies
Maintainers
0
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

html2ast - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

2

package.json
{
"name": "html2ast",
"version": "1.1.0",
"version": "1.1.1",
"description": "Convert html to ast",

@@ -5,0 +5,0 @@ "main": "./dist/index.umd.js",

# html2ast
Convert html to ast.
`html2ast` is a tool that converts HTML into an abstract syntax tree (AST), suitable for scenarios where HTML structure needs to be parsed and processed.

@@ -11,4 +11,6 @@ ## install

## use
## 使用示例
### Node.js
```javascript

@@ -30,2 +32,22 @@ import {parse} from 'html2ast'

console.log(tree)
```
## umd
```javascript
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script src="https://unpkg.com/html2ast@latest/dist/index.iife.js"></script>
<script>
const ast = html2ast.parse('<div><p>hello world</p></div>');
console.log(ast);
</script>
</body>
</html>
```
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