yourls

1.0.2 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i yourls

Weekly Downloads

13

Version

1.0.2

License

none

Last publish

Collaborators

  • gabrielpreston