libxml.wasm
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

libxml.wasm

Build

# Build also libraries
docker compose up ci
# Build only bindings
docker compose up wasm

Usage

import init from "@libxml/wasm"
const libxml = await init()

const html = `
<!DOCTYPE html>
<html lang="en">
<head>
  <title>Document</title>
</head>
<body>
  <div class="container">
    <h1 class="title">Hello world</h1>
    <p>Text</p>
  </div>
</body>
</html>
`.trim()

const doc = libxml.parseHTML(html)     // Create a document
const nodes = doc.getNode("//div/h1")  // Get a node by xpath
const h1 = nodes[0]                    // Get the first node
console.log(h1.name)                   // "h1"
console.log(h1.content)                // "Hello world"
console.log(h1.attr.class)             // "title"

Package Sidebar

Install

npm i libxml.wasm

Weekly Downloads

32

Version

1.0.1

License

MIT

Unpacked Size

2.66 MB

Total Files

7

Last publish

Collaborators

  • cabbage916jp