1.0.2 • Published 3 years ago

zergpool.js v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Zergpool.js

Made with axios

GitHub stars

zergpool.js is a Node.js module that allows you to easily interact with the Zergpool API.

• Promise based

• Performant

• 100% coverage of the Zergpool API

• Handles server side limit on wallet and walletEx endpoints

Installation

• Download NPM and NodeJS

With GitHub :

• Download the project or clone it

• Go to the zergpool.js folder and do npm install

• Require the index.js

With NPM :

• Download the project

• Do npm install zergpool.js

• Require the library

Documentation

See the API documentation.

Example usage

Using the library

const { Client } = require("zergpool.js")

const client = new Client()

client.status().then(data => {
    console.log(data)
})

//OR

const myFunc = async () => {
    const data = await client.status()
    console.log(data)
}

myFunc()

The library is async, be sure to use async functions or .then()

Credits

Zergpool API

Copyright

See the license

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago