Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/harshdoshi999/node-url-shortener
https://github.com/harshdoshi999/node-url-shortener
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/harshdoshi999/node-url-shortener
- Owner: harshdoshi999
- Created: 2020-07-31T08:28:29.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-07-31T08:29:20.000Z (over 4 years ago)
- Last Synced: 2024-09-29T18:03:03.335Z (about 2 months ago)
- Size: 1000 Bytes
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#About
node-url-shortener help you to shorten your big URLs. Currently we support only is.gd because it does not need any kind of API key. You can shorten number of URLs without any limit without using any API keys.Note: From 29th July, 2020 - We are trying to integrate another platform to balance load. You don't have to worry at all as there won't be any code change required and your previous URLs will keep working as it is. We'll keep you posted on further news.
# Installation
Install via NPM
```js
npm install node-url-shortener --save
```
# Example
```js
var shortUrl = require('node-url-shortener');
shortUrl.short('https://google.com', function(err, url){
console.log(url);
});```