udcli

3.0.2 • Public • Published

udcli

Build Status Greenkeeper badge

A nodejs urban dictionary cli.

Install

npm install udcli -g

Example

$ udcli lgtm
 
An acronym for "Looks Good To Me", often used as a quick response after reviewing someone's essay, 
code, or design document.

Full source code:

#! /usr/bin/env node
 
if (process.argv.length === 3) {
    require('roi')
        .get({ endpoint: `http://api.urbandictionary.com/v0/define?term=${process.argv[2]}` })
        .then(response => console.log(JSON.parse(response.body).list[0].definition))
        .catch(console.log);
} else {
    console.log('Usage: node index search_term_here');
}

/udcli/

    Package Sidebar

    Install

    npm i udcli

    Weekly Downloads

    2

    Version

    3.0.2

    License

    MIT

    Unpacked Size

    2.31 kB

    Total Files

    5

    Last publish

    Collaborators

    • felipewmartins
    • helio-frota