Skip to content

hemanth/node-octodex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

octodex Build Status

Get random octodex img URLs.

Getting Started

Install the module with: npm install octodex

var cat = require('octodex');

cat.img(function(err,url){
    if(!err){
        console.log(url);
       // This will give a random img url.
    }
});

You can also pass the second parameter indicating to the module to do in memory cache of the parsed content. Using it, he will perform the parce only once. making the other invocations faster.

var cat = require('octodex');

cat.img(function(err,url){
    if(!err){
        console.log(url);
       // This will give a random img url.
    }
}, true);

License

Copyright (c) 2013 Hemanth.HM
Licensed under the MIT license.

About

Get random octodex images from github's octodex.

Resources

License

Stars

Watchers

Forks

Packages