New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

localbitcoins-changes-nodejs

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

localbitcoins-changes-nodejs

LocalBitcoins API wrapper for NodeJS

  • 0.1.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
27
increased by125%
Maintainers
1
Weekly downloads
 
Created
Source

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 i localbitcoins-changes-nodejs

const LBCClient = require("localbitcoins-changes-nodejs");
const lbc = new LBCClient(api_key, api_secret);

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

To-Do:

  • ad-create: done
  • set new parameter post with get or post methods after {params}: done
  • chat message send on trade: done

Credit:

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

Edited By: Pardeep889@hotmail.com

Keywords

FAQs

Package last updated on 06 Dec 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc