Open In App

Node.js URL.hostname API

Improve
Improve
Like Article
Like
Save
Share
Report

The url.hostname is an inbuilt application programming interface of class URL with in url module which is used to get and set the hostname portion of the URL. The key difference between url.host and url.hostname is that url.hostname does not include the port.
 

Syntax:  

const url.hostname

Return value: It gets and sets the hostname portion of the URL.
Below programs illustrate the use of url.hostname Method:
Example 1:  

javascript




// node program to demonstrate the 
// url.hostname API as Setter 
   
//importing the module 'url'
const http = require('url');
   
// creating and initializing myURL
const myURL = new URL('https://example.com:80/foo#ram');
   
// Display href value of myURL before change
console.log("Before Change");
console.log(myURL.href);
   
// assigning hostname portion
// using hostname
console.log();
myURL.hostname = 'example.org';
   
// Display href value of myURL after change
console.log("After Change");
console.log(myURL.href);


Output
 

Example 2: 

javascript




// node program to demonstrate the 
// url.hostname API as Getter 
  
//importing the module 'url'
const http = require('url');
  
// creating and initializing myURL
const myURL = new URL('https://example.org/foo#ram');
  
// getting the hostname portion
// using hostname
const hostname = myURL.hostname;
  
// Display hostname value 
console.log(hostname);


Output: 
 

NOTE: The above program will compile and run by using the node myapp.js command. 
Reference: 
https://nodejs.org/dist/latest-v10.x/docs/api/url.html#url_url_host



Last Updated : 14 Oct, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads