3.7.0 • Published 4 months ago

goturl v3.7.0

Weekly downloads
-
License
MIT
Repository
-
Last release
4 months ago

goturl

NPM version NPM downloads Fastify

goturl - the library that tries to do its best to extract urls from strings.

Installation

yarn add goturl

Usage

import { extractUrl } from 'goturl';

extractUrl("Visit https://example.com for more info");
// => https://example.com

extractUrl("Website: another-one.com");
// => another-one.com

extractUrl("Don't forget about this.com/thing?query=string", { fallbackProtocol: 'https' });
// => https://this.com/thing?query=string

extractUrl("Check out our promotions: http://promotion.com http://promotion.com/real/offer", { getLongestUrl: true });
// => http://promotion.com/real/offer

extractUrl("Quick reminder, check out our websitehttps://hurry.com/mistake", { tryFixProtocol: true });
// => https://hurry.com/mistake

Testing

yarn test
3.7.0

4 months ago

3.6.19

1 year ago

3.6.18

1 year ago

3.6.15

1 year ago

3.6.12

1 year ago

3.6.9

1 year ago