JSPM

get-url-origin

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5464
  • Score
    100M100P100Q121420F
  • License MIT

Get origin from url string in Node.js

Package Exports

  • get-url-origin

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (get-url-origin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

get-url-origin Build Status

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.

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Author

License

MIT © azu