2.0.0 • Published 4 years ago

spigot-buyer-list v2.0.0

Weekly downloads
14
License
MIT
Repository
github
Last release
4 years ago

spigot-buyer-list

npm npm bundle size GitHub issues GitHub pull requests NPM GitHub last commit

A NodeJS package that allows you to fetch the buyers list on Spigot for a premium plugin

Installation

This package can be installed from NPM using npm or yarn.

npm install spigot-buyer-list
yarn add spigot-buyer-list

Code Examples

Using this package is pretty straight forward. Here is some sample code:

import SpigotSite from 'spigot-buyer-list';

const getBuyers = async () => {
  try {
    const spigotSite = new SpigotSite('username', 'password', 'tfaSecret');
    await spigotSite.loginToSpigot();
    // getBuyersList(resourceId)
    const buyers = await spigotSite.getBuyersList(30331); // [{id: 123456, username: "user"}, ...]
  } catch (e) {
    console.error('Failed to fetch buyer list', e);
  }
};

Contributing

Feel free to submit a PR or open an issue if you want something improved with this package. Remember to run yarn format (or npm run format) before commiting (in case of code changes).

2.0.0

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago