This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

vgd

1.1.4 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i vgd

Weekly Downloads

11

Version

1.1.4

License

MIT

Last publish

Collaborators

  • alphat3ch