§

URL

§

URL ഭാഗങ്ങൾ

പൂർണ്ണ URL (href)
പ്രോട്ടോക്കോൾ
ഉപയോക്തൃനാമം
പാസ്‌വേഡ്
Host
ഹോസ്റ്റ്നാമം
പോർട്ട്
പാത്ത്നാമം
സെർച്ച് (raw)
Hash (ഫ്രാഗ്‌മെന്റ്)
ഉദ്ഭവം
§

Query പാരാമീറ്ററുകൾ

കീ മൂല്യം (raw) Decoded മൂല്യം

ഈ URL-ൽ query parameters ഇല്ല

കേരളത്തിലെ ഡെവലപ്പർമാർ digital marketing campaigns audit ചെയ്യുമ്പോൾ, Razorpay payment redirect chains debug ചെയ്യുമ്പോൾ, Firebase Dynamic Links inspect ചെയ്യുമ്പോൾ, OAuth callback URLs decode ചെയ്യുമ്പോൾ URL parsing ദൈനംദിനം ഉപയോഗിക്കുന്നു. utm_source, utm_medium, gclid, fbclid — ഈ query keys GA4 reports-ൽ distinct ആണ്. ഈ in-browser parser native WHATWG URL standard ഉപയോഗിക്കുന്നു, ഇവിടെ കാണുന്നത് fetch call, Node script, Lambda function-ൽ കാണുന്നതിന് exact ആയി match ആകും.

URL parsing എങ്ങനെ പ്രവർത്തിക്കുന്നു

Parser WHATWG URL standard-ൽ run ചെയ്യുന്നു, ഏത് href-നും browser ഉപയോഗിക്കുന്ന algorithm. String native URL constructor-ലേക്ക് pass ചെയ്ത് ഓരോ component-ഉം ഒരു property ആയി read ചെയ്യുന്നു.

  1. Input validate ചെയ്യുക. Empty string ആണ് empty-input notice കാണിക്കുന്നു. അല്ലെങ്കിൽ text new URL(text)-ലേക്ക് pass ചെയ്യുന്നു; TypeError string ഒരു valid absolute URL അല്ല എന്ന് അർഥിക്കുന്നു.
  2. Structural components read ചെയ്യുക. URL object-ൽ നിന്ന് protocol, username, password, host, hostname, port, pathname, search, hash, origin read ചെയ്യുന്നു. ഓരോന്നും അതിന്റെ സ്വന്തം row-ൽ land ചെയ്യുന്നു, isolate ആയി copy ചെയ്യാൻ.
  3. Query string walk ചെയ്യുക. url.searchParams.entries() iterate ചെയ്ത് ഓരോ key-നും ഒരു table row render ചെയ്യുന്നു. Raw value-ന് അടുത്ത് decodeURIComponent(value) ഇരിക്കുന്നു, percent-encoded payloads (spaces, plus signs, Unicode) plain text ആകുന്നു.
  4. Demand-ൽ Rebuild ചെയ്യുക. ഏത് cell-ഉം edit ചെയ്ത്, row delete ചെയ്ത്, അല്ലെങ്കിൽ parameter ചേർത്ത്, Build URL ക്ലിക്ക് ചെയ്യുക. ടൂൾ edits-ൽ നിന്ന് fresh URL object reconstruct ചെയ്ത് result input box-ലേക്ക് write ചെയ്യുന്നു.
  5. Live മോഡ്. Live mode toggle ചെയ്ത് ഓരോ keystroke-ഉം 150 ms debounce-ഉമായി URL re-parse ചെയ്യുന്നു. Log-ൽ നിന്ന് fragments paste ചെയ്ത് immediate feedback ആഗ്രഹിക്കുമ്പോൾ ഉപകാരപ്രദം.

ബ്രൗസറിൽ URL parse ചെയ്യേണ്ടതെന്തുകൊണ്ട്

  • Tab-ൽ നിന്ന് ഒന്നും പോകില്ല. URLs-ൽ tokens, session IDs, OAuth state, signed query parameters ഉണ്ട്, third-party service hold ചെയ്യരുത്. ഈ parser browser locally run ചെയ്യുന്ന URL algorithm ഉപയോഗിക്കുന്നു — upload ഇല്ല, network call ഇല്ല.
  • നിങ്ങളുടെ code കാണുന്നതുമായി match ആകുന്നു. Node.js, Deno, modern browsers, Cloudflare Workers എല്ലാം WHATWG URL implementation ship ചെയ്യുന്നു. ഇവിടെ URL inspect ചെയ്യുന്നത് production-ൽ new URL(input) call ചെയ്യുന്ന component split ആണ് നൽകുന്നത്.
  • Query strings human-friendly ആയി വായിക്കുന്നു. Raw, decoded values side by side ഇരിക്കുന്നു, q=hello%20world pair wire bytes-ഉം readable hello world-ഉം ഒറ്റ നോട്ടത്തിൽ കാണിക്കുന്നു. Mental URL-decoding ആവശ്യമില്ല.
  • Round-trip എഡിറ്റിംഗ്. Tracking parameter drop ചെയ്ത്, path-ൽ typo fix ചെയ്ത്, port മാറ്റി — URL rebuild ചെയ്യുക. Output URL constructor-ൽ കൂടി pass ആകുന്നു, invalid ആകുന്നതെല്ലാം copy ചെയ്യുന്നതിന് മുൻപ് surface ആകുന്നു.

സാധാരണ applications

URL parsing developer, security, analytics ജോലിയിൽ ദൈനംദിനം കാണപ്പെടുന്നു, URL ഒരു link-ൽ കൂടുതൽ ആകുമ്പോഴെല്ലാം.

  • API endpoints debug ചെയ്യൽ: curl അല്ലെങ്കിൽ Postman request send ചെയ്യുന്നതിന് മുൻപ് base URL, path, query parameters confirm ചെയ്യൽ.
  • Tracking-parameter audits: landing-page URL-ൽ ഓരോ UTM, gclid, fbclid, campaign key list ചെയ്ത് ഏത് keep ചെയ്യണം തീരുമാനിക്കൽ.
  • Affiliate, partner links validate ചെയ്യൽ: deeplink paste ചെയ്ത്, publish ചെയ്യുന്നതിന് മുൻപ് destination host-ഉം embedded redirect target-ഉം confirm ചെയ്യൽ.

ഒരു worked example

Input-ൽ https://example.com/search?q=hello%20world&lang=en paste ചെയ്യുക. Protocol https: ആയും, hostname example.com ആയും, pathname /search ആയും, search ?q=hello%20world&lang=en ആയും reads. Query table രണ്ട് rows കാണിക്കുന്നു: q raw value hello%20world-ഉം decoded value hello world-ഉം, ശേഷം lang raw-ഉം decoded-ഉം en. lang row-ൽ Remove ക്ലിക്ക് ചെയ്ത്, Build URL — input https://example.com/search?q=hello%20world ആയി update ആകുന്നു.

FAQ

URL parser എന്നാൽ എന്ത്?

ഒരു URL parser, URL string-ഇനെ named components ആക്കി decompose ചെയ്യുന്നു: protocol (https), userinfo (username, password), host (hostname plus optional port), path, query string, fragment. ഓരോ query parameter-ഉം decode ചെയ്ത് percent-encoded values (space-നായി %20 പോലുള്ളവ) readable ആകുന്നു. ഇവിടെ parser WHATWG URL standard ഉപയോഗിക്കുന്നു, browser page load ചെയ്യാൻ ഉപയോഗിക്കുന്ന standard.

Host-ഉം hostname-ഉം തമ്മിലുള്ള വ്യത്യാസം എന്ത്?

Hostname domain (അല്ലെങ്കിൽ IP address) മാത്രം — example.com:8080-ന് hostname example.com ആണ്. Non-default port present ആകുമ്പോൾ Host hostname-ഉം port-ഉം ആണ്, ആ URL-ന് host example.com:8080 ആണ്. Default ports (https-ന് 443, http-ന് 80) URLs-ൽ host, hostname identical ആണ്.

Decoding automatic ആയി സംഭവിക്കുമോ?

Structural components (protocol, hostname, port, pathname) URL object-ൽ നിന്ന് extra decoding ഇല്ലാതെ read ചെയ്യുന്നു — URL constructor already normalise ചെയ്യുന്നു. Query values രണ്ട് തവണ കാണിക്കുന്നു: search-ൽ raw percent-encoded string, decodeURIComponent produce ചെയ്ത decoded value. Downstream tool expect ചെയ്യുന്ന form copy ചെയ്യാൻ.

Edit ചെയ്ത് URL rebuild ചെയ്യാൻ കഴിയുമോ?

അതെ. ഓരോ parts cell-ഉം ഓരോ query-parameter cell-ഉം editable ആണ്. Add, Remove buttons ഉപയോഗിച്ച് query rows add, remove ചെയ്ത്, Parts-ൽ നിന്ന് Build URL ക്ലിക്ക് ചെയ്യുക. ടൂൾ edits URL constructor-ൽ കൂടി run ചെയ്ത് result input-ലേക്ക് write ചെയ്യുന്നു — edits invalid URL produce ചെയ്യുന്നുവെങ്കിൽ നിങ്ങളുടെ code-ൽ new URL()-ൽ നിന്ന് ലഭിക്കുന്ന error message ലഭിക്കും.

URL parsing ഓരോ web developer-ഉം ആഴ്ചതോറും ചെയ്യുന്ന ഒരു ചെറിയ ജോലിയാണ്. Production code ഉപയോഗിക്കുന്ന algorithm-ൽ, browser-ൽ ചെയ്യുന്നത് ജോലി fast ആക്കുകയും data machine-ൽ നിലനിർത്തുകയും ചെയ്യുന്നു.