The url.port is an inbuilt application programming interface of class URL within url module which is used to get and set the port portion of the URL.the port value may be a number or a string containing a number in the range 0 to 65535 (inclusive). Setting the value to the default port of the URL objects given protocol will result in the port value becoming the empty string (”).
The port value can be an empty string in which case the port depends on the protocol/scheme:
Protocol |
port |
“ftp” |
21 |
“file” |
|
“gopher” |
70 |
“http” |
80 |
“https” |
443 |
“ws” |
80 |
“wss” |
443 |
Upon assigning a value to the port, the value will first be converted to a string using .toString().
If that string is invalid but it begins with a number, the leading number is assigned to the port. If the number lies outside the range denoted above, it is ignored.
Syntax:
const url.port
Return value: It gets and sets the port portion of the URL.
Below programs illustrate the use of url.port Method:
Example 1:
Javascript
const http = require( 'url' );
console.log( "Before Change" );
console.log(myURL.href);
console.log();
myURL.port = '12345' ;
console.log( "After Change" );
console.log(myURL.href);
|
Output:

Example 2: If the port number is half numeric and half alphabetic
Javascript
const http = require( 'url' );
console.log( "Before Change" );
console.log(myURL.href);
console.log();
myURL.port = '2580abcd' ;
console.log( "After Change" );
console.log(myURL.href);
|
Output:

Example 3:
Javascript
const http = require( 'url' );
myURL.port = '1234'
const port = myURL.port;
console.log( "port is : " + port);
console.log( "After Change" );
myURL.port = '443' ;
console.log(myURL.port);
|
Output:

NOTE: The above program will compile and run by using the myapp.js command on Node.
Reference:
https://nodejs.org/api/url.html#url_url_port
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
14 Oct, 2021
Like Article
Save Article