Node.js URL Module
                      <!-- main_leaderboard, all: [728,90][970,90][320,50][468,60] -->                      Node.js URL Module ❮ Previous Next ❯ The Built-in URL Module The URL module splits up a web address into readable parts. To include the URL module, use the require()  method:   var url = require('url'); Parse an address with the url.parse()  method, and it will return a URL object with each part of the address as properties: Example Split a web address into readable parts:     var url = require('url');   var adr = 'http://localhost:8080/default.htm?year=2017&month=february';   var q = url.parse(adr, true);   console.log(q.host); //returns 'localhost:8080'   console.log(q.pathname); //returns '/default.htm' console.log(q.search); //returns '?year=2017&month=february'   var qdata = q.query; //returns an object: { year: 2017, month: 'february' }   console.log(qdata.month); //returns 'february' Run example ...