VOOZH about

URL: https://www.geeksforgeeks.org/node-js/node-js-url-hostname-api/

⇱ Node.js URL.hostname API - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Node.js URL.hostname API

Last Updated : 14 Oct, 2021

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:  

Output
 

👁 Image


Example 2: 

Output: 
 

👁 Image


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

Comment
Article Tags:

Explore