Skip to content

Commit 8eb5300

Browse files
committed
Update README.md
1 parent 525995b commit 8eb5300

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @utooland/domparser-rs
1+
# domparser-rs
22

33
A super fast Node.js addon for HTML parsing and manipulation, written in Rust. It aims to provide a standard-compliant DOM API for Node.js.
44

@@ -13,15 +13,15 @@ A super fast Node.js addon for HTML parsing and manipulation, written in Rust. I
1313
## Installation
1414

1515
```bash
16-
yarn add @utooland/domparser-rs
16+
yarn add domparser-rs
1717
# or
18-
npm install @utooland/domparser-rs
18+
npm install domparser-rs
1919
```
2020

2121
## Usage
2222

2323
```js
24-
const { parse } = require('@utooland/domparser-rs');
24+
const { parse } = require('domparser-rs');
2525
const root = parse('<div id="foo" class="bar">hello <span>world</span></div>');
2626

2727
const div = root.select('div');

crates/domparser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "domparser"
4-
version = "0.0.6"
4+
version = "0.0.6"
55
description = "A super fast html parser and manipulator written in rust."
66
license = "MIT"
77
repository = "https://github.com/utooland/domparser-rs"

0 commit comments

Comments
 (0)