RepoBike / node-cgminer

Complete cgminer API implementation for Node.js with multi-version support and integration tests

Home Page:https://www.npmjs.org/package/cgminer-api

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cgminer-api

Complete cgminer API implementation for Node.js with multi-version support, response validation, and integration tests.

NPM version Build status Dependency Status

Install

$ npm install cgminer-api --save

Usage

var Client = require('cgminer-api').client;
var cgminer = new Client({
  host: '192.168.1.99',
  port: 4028
});

cgminer.connect()
  .then(function () {
    return cgminer.version();
  })
  .then(function (version) {
    console.log(version);
  })
  .catch(function (error) {
    console.log(error);
  });

License

MIT

About

Complete cgminer API implementation for Node.js with multi-version support and integration tests

https://www.npmjs.org/package/cgminer-api

License:MIT License


Languages

Language:JavaScript 100.0%