Network tools
// Network

URL Parser

> Split any URL into protocol, auth, host, port, path, query params, and hash.

url.in
parts.out

Query params

q=hello
lang=en
href:      https://user:[email protected]:8443/path/to/page?q=hello&lang=en#section
origin:    https://example.com:8443
protocol:  https:
username:  user
password:  ••••••
host:      example.com:8443
hostname:  example.com
port:      8443
pathname:  /path/to/page
search:    ?q=hello&lang=en
hash:      #section

Query params:
  q = hello
  lang = en