El url.hostname es una interfaz de programación de aplicaciones incorporada de clase URL dentro del módulo url que se usa para obtener y establecer la parte del nombre de host de la URL. El url.hostname no incluye el número de puerto.
Sintaxis:
url.hostname
Se asocia por URL de valor único, que es un objeto creado por el constructor de URL.
Ejemplo:
// Node program to demonstrate the // url.hostname API as both Getter and Setter // Imports only single export 'URl' // from url module using ES6 syntax const { URL } = require('url'); // Creating and initializing myURL // object using URL constructor const myURL = new URL('https://gfg.org:80/foo#ram'); // Display hostname value of myURL before change console.log("Before Change"); console.log(myURL.hostname); console.log(''); // Updating hostname portion // using hostname method myURL.hostname = 'example2.com'; // Display hostname value of myURL after updating console.log("After Change"); console.log(myURL.hostname);
Producción:
Before Change gfg.org After Change geeksforgeeks.org
Referencia: https://nodejs.org/dist/latest-v10.x/docs/api/url.html#url_url_hostname
Publicación traducida automáticamente
Artículo escrito por ManojVarmaPenmatsa y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA