github.com/PuerkitoBio/goquery
go
pkg:golang/github.com/PuerkitoBio/goquery
166 Dependabot PRs
about 2 months ago
111 repositories
2 repositories
Recent PRs
build(deps): bump the minor-and-patch group with 3 updates
Bump github.com/PuerkitoBio/goquery from 1.10.3 to 1.12.0
suntong/cascadia #28
deps: bump github.com/PuerkitoBio/goquery from 1.9.2 to 1.12.0
chore(plugin-example)(deps): bump github.com/PuerkitoBio/goquery from 1.10.0 to 1.12.0 in /plugins/default/browser
chore(deps): bump the all group across 1 directory with 23 updates
OHANA-WEB/crush #11
Bump github.com/PuerkitoBio/goquery from 1.10.3 to 1.12.0
chore(deps): bump the go-dependencies group across 1 directory with 20 updates
Bump the go-modules-updates group across 1 directory with 5 updates
umputun/remark42 #2033
chore(deps): bump github.com/PuerkitoBio/goquery from 1.10.1 to 1.12.0
kgateway-dev/kgateway #13768
chore(deps): bump the all group across 1 directory with 25 updates
deps(deps): bump the all-go-deps group across 1 directory with 2 updates
chore(deps): Bump the gomod group across 1 directory with 4 updates
vibhavverma/website-cloner-rivi #4
Bump the go-modules group across 1 directory with 7 updates
greenbone/csaf_distribution #130
chore(deps): bump the all group across 1 directory with 24 updates
chore(crawler-backend)(deps): bump github.com/PuerkitoBio/goquery from 1.11.0 to 1.12.0 in /crawler/backend
alexandrebhz/joinus #118
Bump github.com/PuerkitoBio/goquery from 1.11.0 to 1.12.0
chore: bump github.com/PuerkitoBio/goquery from 1.11.0 to 1.12.0 in /cmd/changes-analyzer
solarwinds/solarwinds-otel-collector-releases #329
chore(deps): bump github.com/PuerkitoBio/goquery from 1.11.0 to 1.12.0
kcenon/web_crawler #119
⬆️ sec(deps): Bump github.com/PuerkitoBio/goquery from 1.11.0 to 1.12.0
roma-glushko/frens #134
chore(deps): bump github.com/PuerkitoBio/goquery from 1.11.0 to 1.12.0
99designs/gqlgen #4076
chore(deps): bump the all group across 1 directory with 22 updates
Bump the all group across 1 directory with 3 updates
chore(deps): bump the all group across 1 directory with 3 updates
build(deps): bump github.com/PuerkitoBio/goquery from 1.9.2 to 1.12.0
⬆️ Bump github.com/PuerkitoBio/goquery from 1.4.0 to 1.11.0
toshi0607/gig #30
build(deps): bump github.com/PuerkitoBio/goquery from 1.10.3 to 1.11.0 in /audio/inflarics
chore(deps): bump the all group across 1 directory with 23 updates
chore(deps): bump the all group across 1 directory with 17 updates
Bump the go-modules-updates group across 1 directory with 7 updates
chore(deps): bump the all group across 1 directory with 13 updates
deps: bump github.com/PuerkitoBio/goquery from 1.9.2 to 1.11.0
chore(deps): bump the all group across 1 directory with 16 updates
can1357/rush #9
chore(deps): bump the all group across 1 directory with 12 updates
chore(deps): bump the all group across 1 directory with 10 updates
chore(deps): bump the go-deps group across 1 directory with 19 updates
aws/karpenter-provider-aws #8753
chore(deps): bump the all group across 1 directory with 3 updates
chore(deps): bump the go group across 1 directory with 6 updates
williamsjokvist/cfn-tracker #331
chore(deps): bump the all group across 1 directory with 13 updates
jeffersonwarrior/zackor-cli #4
chore(deps): bump the golang-dependencies group with 4 updates
gaohan085/VideoServerGolang #418
deps: Bump github.com/PuerkitoBio/goquery from 1.10.3 to 1.11.0
chore(deps): bump the all group across 1 directory with 13 updates
chore(deps): bump the all group with 3 updates
charmbracelet/crush #1504
chore(deps): bump the go-deps group across 1 directory with 18 updates
aws/karpenter-provider-aws #8729
build(deps): bump the all group across 1 directory with 2 updates
Bump github.com/PuerkitoBio/goquery from 1.10.3 to 1.11.0 in the go-modules group
greenbone/csaf_distribution #109
chore(deps): bump github.com/PuerkitoBio/goquery from 1.9.2 to 1.11.0
geeksforsocialchange/faceloader #147
Bump github.com/PuerkitoBio/goquery from 1.10.3 to 1.11.0
Bump github.com/PuerkitoBio/goquery from 1.10.3 to 1.11.0
pilinux/totext #67
Bump github.com/PuerkitoBio/goquery from 1.9.1 to 1.11.0
joseguzman1337/Amass #222
Bump github.com/PuerkitoBio/goquery from 1.10.2 to 1.11.0
valbeat/whatday #38
Package Details
| Name: | github.com/PuerkitoBio/goquery |
| Ecosystem: | go |
| PURL Type: | golang |
| Package URL: | pkg:golang/github.com/PuerkitoBio/goquery |
| JSON API: | View JSON |
Package Information
Package goquery implements features similar to jQuery, including the chainable syntax, to manipulate and query an HTML document. It brings a syntax and a set of features similar to jQuery to the Go language. It is based on Go's net/html package and the CSS Selector library cascadia. Since the net/html parser returns nodes, and not a full-featured DOM tree, jQuery's stateful manipulation functions (like height(), css(), detach()) have been left off. Also, because the net/html parser requires UTF-8 encoding, so does goquery: it is the caller's responsibility to ensure that the source document provides UTF-8 encoded HTML. See the repository's wiki for various options on how to do this. Syntax-wise, it is as close as possible to jQuery, with the same method names when possible, and that warm and fuzzy chainable interface. jQuery being the ultra-popular library that it is, writing a similar HTML-manipulating library was better to follow its API than to start anew (in the same spirit as Go's fmt package), even though some of its methods are less than intuitive (looking at you, index()...). It is hosted on GitHub, along with additional documentation in the README.md file: https://github.com/puerkitobio/goquery Please note that because of the net/html dependency, goquery requires Go1.1+. The various methods are split into files based on the category of behavior. The three dots (...) indicate that various "overloads" are available. * array.go : array-like positional manipulation of the selection. * expand.go : methods that expand or augment the selection's set. * filter.go : filtering methods, that reduce the selection's set. * iteration.go : methods to loop over the selection's nodes. * manipulation.go : methods for modifying the document * property.go : methods that inspect and get the node's properties values. * query.go : methods that query, or reflect, a node's identity. * traversal.go : methods to traverse the HTML document tree. * type.go : definition of the types exposed by goquery. * utilities.go : definition of helper functions (and not methods on a *Selection) that are not part of jQuery, but are useful to goquery. This example scrapes the reviews shown on the home page of metalsucks.net.
| Repository: | https://github.com/PuerkitoBio/goquery |
| Homepage: | https://github.com/PuerkitoBio/goquery |
| Latest Release: |
v1.10.3
over 1 year ago |
| Dependent Repos: | 19,320 |
| Dependent Packages: | 6,716 |
| Ranking: | Top 0.0491% by dependent repos Top 0.029% by dependent pkgs |