Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.4K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.5K+ articles
School Learning
11.1K+ articles
JavaScript
9.9K+ articles
Node.js
3.0K+ articles
Web technologies
657+ articles
Node.js-Globals
10+ articles
Node-URL
50 posts
Recent Articles
URL in Node.js
Last Updated: 25 April 2026
The url module in Node.js provides utilities to parse and manipulate URLs. The URL class is globally available and allows access to URL properties using getters and setter...
read more
Web Technologies
Node.js
Node-URL
Node.js URL() Method
Last Updated: 03 June 2026
The URL() constructor in Node.js creates a new URL object by parsing a URL string and, when needed, resolving a relative URL against a base. It is part of the built-in url...
read more
Node.js
Node-URL
Node.js-Globals
Node.js urlSearchParams.get() Method
Last Updated: 07 October 2021
The urlSearchParams.get() method is an inbuilt application programming interface of class URLSearchParams within url module which is used to get the value for particular n...
read more
Web Technologies
Node.js
Node-URL
Node.js url.domainToUnicode() Method
Last Updated: 30 June 2020
The url.domainToUnicode() method is an inbuilt application programming interface of class URL with in url module which is used to get the domain for the particular ASCII v...
read more
Web Technologies
Node.js
Node-URL
Node.js urlSearchParams.toString() Method
Last Updated: 16 December 2021
The urlSearchParams.toString() method is an inbuilt application programming interface of class URLSearchParams within url module which is used to get the object of uri sea...
read more
Web Technologies
Node.js
Node-URL
Node.js urlSearchParams.keys() Method
Last Updated: 07 October 2021
The urlSearchParams.keys() method is an inbuilt application programming interface of the URLSearchParams class within url module which is used to get the iterator object c...
read more
Web Technologies
Node.js
Node-URL
Node url.toString() Method
Last Updated: 15 July 2025
The url.toString() method is an inbuilt application programming interface(API) of the URL module within the Node.JS. The url.toString() method is used to return the serial...
read more
Web Technologies
Picked
Node.js
Node-URL
Node.js urlObject.slashes API
Last Updated: 31 March 2023
The urlObject.slashes property is used when one wants to check whether there is a need for ASCII valued forward-slash character (/) after the colon (:) in the protocol (HT...
read more
Web Technologies
Picked
Node.js
Node-URL
Node.js urlObject.href API
Last Updated: 31 March 2023
The urlObject.href API is used to return the complete URL string along with the protocols(HTTP) and pathname or other search terms. Syntax:urlObject.hrefFor example: 'http...
read more
Web Technologies
Picked
Node.js
Node-URL
Node.js URL.pathToFileURL API
Last Updated: 31 March 2023
This URL.pathToFileURL function converts the path to a file and ensures that the URL control characters (/, \, : ) are correctly appended/adjusted when converting the give...
read more
Web Technologies
Picked
Node.js
Node-URL
Node.js urlObject.query API
Last Updated: 31 March 2023
The urlObject.query is the query string returned without the ASCII question mark (?) or an object returned by the query string module named as parse() method. The url.pars...
read more
Web Technologies
Picked
Node.js
Node-URL
Node.js URL.fileURLToPath API
Last Updated: 14 October 2021
This URL.fileURLToPath function decodes the file URL to a path string and ensures that the URL control characters (/, %) are correctly appended/adjusted when converting th...
read more
Web Technologies
Picked
Node.js
Node-URL
Node.js URL.toJSON() Method
Last Updated: 03 June 2026
The URL.toJSON() method in Node.js converts a URL object into a JSON-friendly string representation. It enables URL objects to be serialized automatically, making them eas...
read more
Web Technologies
Picked
Node.js
Node-URL
Node.js url.parse(urlString, parseQueryString, slashesDenoteHost) API
Last Updated: 12 July 2025
The url.parse() method takes a URL string, parses it, and it will return a URL object with each part of the address as properties. Syntax: url.parse( urlString, parseQuery...
read more
Web Technologies
Picked
Node.js
Node-URL
Node.js URL.protocol API
Last Updated: 11 July 2025
The url.protocol is an inbuilt application programming interface of class URL within url module which is used to get and set the protocol portion of the URL. When a URL is...
read more
Web Technologies
Node.js
Node-URL
1
2
3
4