http://v.gd URL Shortener Node.js Module
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'; vgdshorten'http://google.com' console.logres; //Returns a shorter version of http://google.com - http://v.gd/ddwyMm ; vgdcustom'http://google.com' 'MyGoogleShortcut' console.logres; // If the custom URL of MyGoogleShortcut is actually available, it should return http://v.gd/MyGoogleShortcut ; vgdlookup'http://v.gd/ddwyMm' console.logres; //Returns a longer version of http://v.gd/ddwyMm - http://google.com ;