spigot-buyer-list

2.0.0 • Public • Published

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).

Readme

Keywords

Package Sidebar

Install

npm i spigot-buyer-list

Weekly Downloads

2

Version

2.0.0

License

MIT

Unpacked Size

6.98 kB

Total Files

5

Last publish

Collaborators

  • diogotc