npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

discord-link-api

v1.1.9

Published

A module to access Player Links to Discord IDs DB

Downloads

6

Readme

discord-link-api

An API that will communicate with the DB to link, update and search players by player tags and discord Ids.

First Things First!

const discordlinkapi = require('discord-link-api');

Init

let client = new discordlinkapi({
username: 'YourUsername',
password: 'YourPassword'
})

You can also define the username and password in .env as DLA_API_USERNAME and DLA_API_PASSWORD

You can get your own username and password to access the DB by talking to ReverendMike#6969 in the server: https://discord.gg/Eaja7gJ


Link Players

client
.link('#VQJPJY0L', '581442925611712513')
.then(res => console.log(res))
.catch(err => console.log(err))

//Response: { message: 'Success', statusCode: 200 }

Update Players

client
.update('#VQJPJY0L', '581442925611712513')
.then(res => console.log(res))
.catch(err => console.log(err))

//Response: { message: 'Success', statusCode: 200 }

Search Player Tags by Discord ID

client
.search('581442925611712513')
.then(res => console.log(res))
.catch(err => console.log(err))

//or

console.log(await client.search('581442925611712513'))

//Response: ['#P8U2J0PV2', '#88QQ99CQQ', '#PYVVYVG8P', '#9GVJ2QRYG', '#YRQPVQQY2', '#2VRVVY0RQ', '#VQJPJY0L']

Returns an array of player tags for the discord ID. Throws error when none is found

Get linked discord ID from a player tag

client
.search('#VQJPJY0L')
.then(res => console.log(res))
.catch(err => console.log(err))

//or

console.log(await client.search('#VQJPJY0L'))

//Response: '581442925611712513'

Returns a string with the discord ID linked to the player tag. Throws error when none is found.

Wanna ask something about the API?

Contact me on Discord

Handling Errors

All errors can be taken with .catch blocks. All the errors are sent as JSON objects with message and statusCode of the error.

{
message: 'Error message',
statusCode: 406
}

How to access this API and use this module?

You can get your own username and password by contacting the owner of the API, ReverendMike#6969 and by contacting us in the server: https://discord.gg/Eaja7gJ