Skip to content

kennywang21/node-yourls

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-yourls - Yourls API for nodejs

This module provides hooks into the Yourls API for Nodejs. For more information about Yourls and what it can do, visit their API docs.

Note

YOURLS is a small set of PHP scripts that will allow you to run your own URL shortening service (a la TinyURL). You can make it private or public, you can pick custom keyword URLs. This means you will need the URL of your, or someone else's, YOURLS installation as well as an API Signature token for that install.

Works over both http and https.

Installation

with Node.js

yourls.js is available on NPM

You can install it with the following command:

npm install yourls

Usage

var Yourls = require('./node-yourls/yourls');

var yourls_url = 'ph.ly';
var yourls_api = '1a40d1e654';

var yourls = new Yourls(yourls_url, yourls_api);

yourls.shorten('https://github.com/gabrielpreston/node-yourls', function(error, result) {
	if (error) {
		throw error;
	}
	console.log(result);
});

Tests

To run tests type npm test

Yourls Features

  • shorten
  • vanity
  • expand
  • urlstats
  • stats
  • dbstats

About

Node.js module for the Yourls API

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%