Hacker News new | ask | show | jobs
by axiosgunnar 1723 days ago
How do browsers parse URLs then?
2 comments

There's actually a standard for it these days.

https://url.spec.whatwg.org/#url-parsing

Here’s a polyfill for the JS URL() interface which should give you a taste: https://github.com/zloirock/core-js/blob/272ac1b4515c5cfbf34... (I tried finding the one in Firefox but I couldn’t actually work out where it started, this one is much easier to follow)

TLDR: it’s a traditional parser—a big state machine that steps through the URL character by character and tokenizes it into the relevant pieces.