LearnApplyShare

[js] parse url

June 15, 2020 - [js, URL, url-parse]

URL 스트링 파싱할 때 옛날엔 url-parse 모듈을 이용했었는데..

요즘은 URL 객체가 기본적으로 지원이 되는구나! 브라우져와 노드 모두 사용가능하구나! 👍

new URL("https://news.v.daum.net/v/20200615030427043")

/*
URL {
  href: 'https://news.v.daum.net/v/20200615030427043',
  origin: 'https://news.v.daum.net',
  protocol: 'https:',
  username: '',
  password: '',
  host: 'news.v.daum.net',
  hostname: 'news.v.daum.net',
  port: '',
  pathname: '/v/20200615030427043',
  search: '',
  searchParams: URLSearchParams {},
  hash: ''
}
*/