Skip to content

jetpks/shortness

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NAME

shortness

NOTES

This is really just a very thin wrapper around sqlite3. It doesn't do any validation. You will need to do your own HTTP (or whatever protocol suits your fancy) stuff around this module. Really, it's just a glorified key value store.

Available through npm: npm install shortness

EXAMPLE

var shortness = require('shortness')
  ;

// Adding!
shortness.add('http://some-long-address.tld/with/some/more/longness', function(shortId) {
  console.log('new url: http://short.tld/' + shortId);
  // output: "new url: http://short.tld/t8j30vns"
});

// Retreiving!
shortness.get('t8j30vns', function(targetUrl) {
  console.log('real url: ', targetURL);
  // output: "real url: http://some-long-address.tld/with/some/more/longness"
});

About

A url shortening library written with node.js and sqlite3.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published