splitted-url

Use to identify (extract) main domain and hostname from a url. We can also use it as external url checking by comparing domain variable in the result.

Usage no npm install needed!

<script type="module">
  import splittedUrl from 'https://cdn.skypack.dev/splitted-url';
</script>

README

splitted-url

NPM Version NPM Downloads Coverage Status

It will use to identify main domain and hostname from a url

Installing

npm i splitted-url --save

Usage

const splittedUrl = require('splitted-url')

splittedUrl('https://google.com')
// => { host: 'google.com', domain: 'google.com' }

splittedUrl('https://google.co.in')
// => { host: 'google.co.in', domain: 'google.co.in' }

splittedUrl('https://www.google.com')
// => { host: 'www.google.com', domain: 'google.com' }

splittedUrl('https://www.google.co.in')
// => { host: 'www.google.co.in', domain: 'google.co.in' }