links-shortener
Version:
JS library for shortening links depending on the search phrase
75 lines (55 loc) • 2.54 kB
Markdown
links-shortener
=======================================================================
Java Script library for shortening links depending on the search phrase.
[](https://github.com/izaboj/links-shortener/issues)
[](https://david-dm.org/izaboj/links-shortener)
[](https://opensource.org/licenses/MIT)
[](https://www.npmjs.com/package/links-shortener)
[](https://www.npmjs.com/package/links-shortener)
## Features
* Very easy to understand
* Configurable max length of link
* Only one dependency
## Installation
* download from GitHub
* npm: `npm install links-shortener`
## makeURLShorter
makeURLShorter - main function for shortening link.
Parameters:
* link
* searchValue
* maxLength
See examples below
## Examples
The examples below showing how the link is shortening depending on where the search phrase (searchValue) is.
### Search phrase in url domain
```javascript
var linkShortener = require('links-shortener');
var link = "http://www.subdomain.domain.com/directory2018/home/test/cat3?param1¶m2¶m3#lastpartofverylongurl";
var maxLength = 40; // max lenght of link
var searchValue = 'com';
var shortenedLink = linkShortener.makeURLShorter(link, searchValue, maxLength);
console.log(shortenedLink);
//prints 'www.subdomain.domain.com/directory2018/home/test/cat3?param1¶m2¶m3#lastpartofverylongurl'
```
### Search phrase in url path
```javascript
var searchValue = 'test';
var shortenedLink = linkShortener.makeURLShorter(link, searchValue, maxLength);
console.log(shortenedLink);
// prints '...domain.domain.com/...home/test/cat3?param1¶m2¶m3#lastpartofverylongurl'
```
### Search phrase in url query
```javascript
var searchValue = 'param2';
var shortenedLink = linkShortener.makeURLShorter(link, searchValue, maxLength);
console.log(shortenedLink);
// prints '...domain.com/directory...?...ram1¶m2¶m#lastpartofverylongurl'
```
### Search phrase(searchValue) in url fragment
```javascript
var searchValue = 'part';
var shortenedLink = linkShortener.makeURLShorter(link, searchValue, maxLength);
console.log(shortenedLink);
//prints '...ain.com/direct...?param1...#lastpartofverylongurl'
```