Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/5rahim/gojadoc

Goja bindings for HTML parsing.
https://github.com/5rahim/gojadoc

cheerio goja goquery jquery

Last synced: 3 days ago
JSON representation

Goja bindings for HTML parsing.

Awesome Lists containing this project

README

        

# gojadoc

Goja bindings for HTML parsing inspired by Cheerio.

```go
package main

import (
"github.com/dop251/goja"

"github.com/5rahim/gojadoc"
)

func main() {
vm := goja.New()

err := gojadoc.BindDocument(vm)
if err != nil {
panic(err)
}
}
```

```ts
const html = `



First Post


This is the first post.


Read more


Second Post


This is the second post.


Read more


Third Post


This is the third post.


Read more