Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/keqingrong/is-same-origin

Check if two URLs are same origin
https://github.com/keqingrong/is-same-origin

same-origin whatwg-url

Last synced: about 1 month ago
JSON representation

Check if two URLs are same origin

Awesome Lists containing this project

README

        

# is-same-origin

[![npm version](https://img.shields.io/npm/v/is-same-origin.svg)](https://www.npmjs.com/package/is-same-origin)

> Check if two URLs are same origin, for Node and the browser

## Installation

```sh
npm install is-same-origin
```

```js
// Using ES6 modules
import isSameOrigin from 'is-same-origin';

// Using CommonJS modules
const isSameOrigin = require('is-same-origin');
```

The CDN build is also available on unpkg:

- [unpkg.com/is-same-origin/dist/index.min.js](https://unpkg.com/is-same-origin/dist/index.min.js)
- [unpkg.com/is-same-origin/dist/index-with-polyfill.min.js](https://unpkg.com/is-same-origin/dist/index-with-polyfill.min.js) - With a [URL API](https://caniuse.com/#feat=url) polyfill

## Usage

```js
const isSameOrigin = require('is-same-origin');

isSameOrigin('http://www.example.com/dir/page.html',
'http://www.example.com/dir/page2.html');
// => true

isSameOrigin('http://www.example.com/dir/page.html',
'http://en.example.com/dir/other.html');
// => false
```

## License

MIT