Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 620 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 620 Bytes

ManageInvite.js

ManageInvite.js is a Node.js library to interact with the official ManageInvite API.

Features

  • Authentication
  • 100% API coverage
  • 100% TypeScript coverage

Installation

npm install manage-invite/manage-invite.js

(or using Github Packages if you need versioning)

Example

const ManageInvite = require('@manage-invite/manage-invite.js');
const client = new ManageInvite('token');

// Add 100000 regular invites to a specific member!
await client.addGuildMemberInvites('guild id', 'user id', 'regular', 100000);