0.1.15 • Published 10 years ago

coderbits v0.1.15

Weekly downloads
2
License
MIT
Repository
github
Last release
10 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

10 years ago

0.1.14

10 years ago

0.1.13

10 years ago

0.1.12

10 years ago

0.1.11

10 years ago

0.1.10

10 years ago

0.1.9

10 years ago

0.1.8

10 years ago

0.1.6

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago