Skip to content

mrmikeo/nodehotbitapi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Node HotBit.io API Helper

https://telegram.me/@MrMike_O

A Promised NodeJS Module for connecting with the HotBit.io Restful API

Install via git

git clone https://github.com/mrmikeo/nodehotbitapi
cd nodehotbitapi
npm install

node example.js

example.js:

const hotbitApi = require("./lib/hotbitApi");
const restapi = new hotbitApi.default(key, secret);


(async () => {
  
  var xx = await restapi.xxx();
  
  console.log("xx: " + xx);
  
})();

Install via npm

npm install --save https://github.com/mrmikeo/nodehotbitapi
const hotbitApi = require("nodeHotBitApi");
const restapi = new hotbitApi.default(key, secret);


(async () => {
  
  var xxx = await restapi.xxx();
  
  console.log("xxx: " + xxx);
  
})();

About

Promised NodeJS Library for the HotBit.io API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published