mvrilo / urban

Command line tool and API for the Urban Dictionary

Home Page:https://mvrilo.github.io/urban/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

urban

The Urban Dictionary program and library for node.js. The API is official, but undocumented.

installation

$ npm install -g urban # bin
$ npm install urban # lib

examples

bin

$ urban facepalm
$ urban -r // random mode

lib

var urban = require('urban'),
    trollface = urban('trollface');

trollface.first(function(json) {
    console.log(json);
});


// Random mode
var urban = require('urban');

urban.random().first(function(json) {
    console.log(json);
});

license

MIT

About

Command line tool and API for the Urban Dictionary

https://mvrilo.github.io/urban/

License:MIT License


Languages

Language:JavaScript 100.0%