VOOZH about

URL: https://www.geeksforgeeks.org/node-js/node-js-urlobject-href-api/

⇱ Node.js urlObject.href API - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Node.js urlObject.href API

Last Updated : 31 Mar, 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.href
For example: 'http://www.geeksforgeeks.com/login/password.html'

Here, Protocol = http
 Path = /login
 Host = 'www'
 File Name = password.html

Example 1: The below example illustrates the use of urlObejct.href method in Node.js.

Output: 

 https://www.geeksforgeeks.com/login.html

Example 2: In this example, we will see the use of urlObject.href

Output: 

 https://www.example.com:777/a/b?c=d&e=f#g 

Note: The above program will compile and run by using the node app.js command. 

Reference: https://nodejs.org/api/url.html#url_urlobject_href

Comment
Article Tags:

Explore