Courses
Sale
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.6K+ 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
662+ 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: 10 August 2026
The Node.js urlSearchParams.get() method is used to access the value of a specific query parameter from a URL. It is a part of the URLSearchParams interface and provides a...
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: 17 August 2026
The URLSearchParams.toString() method converts the parameters stored in a URLSearchParams object into a properly formatted query string. It organizes all key-value pairs i...
read more
Web Technologies
Node.js
Node-URL
Node.js urlSearchParams.keys() Method
Last Updated: 10 August 2026
The urlSearchParams.keys() method in Node.js is part of the URLSearchParams interface and is used to access the keys (parameter names) present in a URL’s query string. It ...
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: 17 August 2026
Node.js urlObject.slashes is a legacy property that indicates whether a parsed URL contains two forward slashes (//) after its protocol. It is part of the object by url.pa...
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: 04 August 2026
URL.pathToFileURL() is a Node.js method used to convert a local path into a properly formatted file: URL. It handles path formatting details automatically so the resulting...
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: 04 August 2026
The Node.js URL.fileURLToPath() API converts a file: URL into a filesystem path string. It is useful when working with file locations represented as URLs and needing them ...
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: 04 August 2026
The url.parse() method in Node.js parses a URL string into a structured object, making it easier to work with individual URL components programmatically.Breaks a URL strin...
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
✕