How to get the path of a URL in Node.js

1 Answer

0 votes
const url = require('url');

const testurl = new URL('https://www.website.com/orders/index.html?id=8372&age=43')

console.log(testurl.pathname);
  

       
/*
run:
     
/orders/index.html
   
*/

 



answered Mar 10, 2020 by avibootz
edited Mar 10, 2020 by avibootz

Related questions

1 answer 159 views
3 answers 267 views
1 answer 215 views
1 answer 217 views
1 answer 272 views
1 answer 217 views
217 views asked Mar 10, 2020 by avibootz
...