Socket
Book a DemoInstallSign in
Socket

get-url-origin

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

get-url-origin

Get origin from url string in Node.js

latest
Source
npmnpm
Version
1.0.1
Version published
Weekly downloads
9.4K
20.93%
Maintainers
1
Weekly downloads
 
Created
Source

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.

  • 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

Keywords

node.js

FAQs

Package last updated on 05 Jan 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts