get-url-origin
v1.0.1
Published
Get origin from url string in Node.js
Downloads
30,350
Readme
get-url-origin
Get origin from url string in Node.js.
This library based on Node.js's Legacy URL API(require('url').Url
)
If you can use Node.js >=7, please use New built-in URL module.
Install
Install with npm:
npm install get-url-origin
Usage
API
/**
* Return URL origin string from `urlString`.
* If origin is not found, return null
* @param {string} urlString
* @returns {string | null}
* @see https://url.spec.whatwg.org/#origin
*/
export declare const getURLOrigin: (urlString: string) => string | null;
Example
getURLOrigin('https://example.com/file/to/path?example'); // => 'https://example.com'
getURLOrigin('http://example.com:80/path/to/file'); // => 'http://example.com:80'
Changelog
See Releases page.
Running tests
Install devDependencies and Run npm test
:
npm i -d && npm test
Contributing
Pull requests and stars are always welcome.
For bugs and feature requests, please create an issue.
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
Author
License
MIT © azu