vgddeprecated

http://v.gd URL Shortener Node.js Module

Usage no npm install needed!

<script type="module">
  import vgd from 'https://cdn.skypack.dev/vgd';
</script>

README

NPM

V.gd Build Status

http://v.gd URL Shortener Node.js Module

Example Shorten:

First run npm install vgd to install the v.gd package to your system.

var vgd = require('vgd');

vgd.shorten('http://google.com', function(res) {
    console.log(res); //Returns a shorter version of http://google.com - http://v.gd/ddwyMm
});

vgd.custom('http://google.com', 'MyGoogleShortcut', function(res) {
    console.log(res); // If the custom URL of MyGoogleShortcut is actually available, it should return http://v.gd/MyGoogleShortcut
});

vgd.lookup('http://v.gd/ddwyMm', function(res) {
    console.log(res); //Returns a longer version of http://v.gd/ddwyMm - http://google.com
});

This Package Is Under The MIT License