0.1.15 • Published 9 years ago

coderbits v0.1.15

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

coderbits

Build Status

A wrapper for the coderbits API.

The simplest way to programmatically get coderbits profiles in node.js.

Install

npm install coderbits

Usage

var coderbits = require('coderbits');

coderbits('bit', function (error, profile) {
  if (!error) console.log(profile);
});

Searches using handles from linked accounts can be done passing the info in a object:

var user = {
  username: 'bitmunkey',
  account: 'github'
};

coderbits(user, function (error, profile) {
  if (!error) console.log(profile);
});

If you want the profile already parsed, just add the json option to your search object:

var user = {
  username: 'bit',
  json: true
};

License

Licensed under the MIT license

0.1.15

9 years ago

0.1.14

9 years ago

0.1.13

9 years ago

0.1.12

9 years ago

0.1.11

9 years ago

0.1.10

9 years ago

0.1.9

9 years ago

0.1.8

9 years ago

0.1.6

9 years ago

0.1.4

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago