Skip to content

mayeaux/localbitcoins-node

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Node LocalBitcoins

NodeJS Client Library for the LocalBitcoins API

This is an asynchronous node js client for the localbitcoins.com API.

It exposes all the API methods found here: https://localbitcoins.com/api-docs/ through the 'api' method:

Example Usage:

npm install localbitcoins-node

var LBCClient = require(localbitcoins-node);
var lbc = new LBCClient(api_key, api_secret);

// Display user's info
lbc.api('myself', null, function(error, data) {
    if(error) {
        console.log(error);
    }
    else {
        console.log(data);
    }
});

To-Do:

  • Get different methods working with querystring parameters added to message

Credit:

Forked from https://github.com/vnistor/

About

LocalBitcoins API wrapper for NodeJS

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published