Skip to content

smurthas/klout-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

klout-js

A simple wrapper of the Klout API in node

npm install klout-js

Usage

First you need an API key, which you can get here (but you already knew that).

Then you can run the example to make sure everything is working:

node example.js your-api-key

which looks something like this

var klout = require('klout-js')('your-api-key');

klout.klout(['smurthas', 'jeremie'], function(err, data) {
    console.log('getKloutScore:', data);
});

klout.show(['smurthas', 'jeremie'], function(err, data) {
    console.log('getKloutScore:', data);
});

klout.topics(['smurthas', 'jeremie'], function(err, data) {
    console.log('getKloutScore:', data);
});

Follow @smurthas for updates!

About

Simple Klout API wrapper for Node.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published