Socket
Book a DemoInstallSign in
Socket

@draftbot/proxy-container

Package Overview
Dependencies
Maintainers
2
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@draftbot/proxy-container

Lightweight HTTP proxy for Discord's API, brought to you as a container 📦

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
2
Created
Source

discord.js


Discord server dockerhub version dockerhub pulls Build status

Vercel Cloudflare Workers

About

@draftbot/proxy-container - Lightweight HTTP proxy for Discord's API, brought to you as a container 📦

Usage

Quickly spin up an instance:

docker run -d --restart unless-stopped --name proxy -p 127.0.0.1:8080:8080 DraftBot/proxy

Use it:

import { Client } from 'discord.js';

const client = new Client({
	// other options,
	rest: {
		api: 'http://localhost:8080/api',
	},
});

Or with just @draftbot/rest:

import { REST } from '@draftbot/rest';

const rest = new REST({
	api: 'http://localhost:8080/api',
});

Do note that you should not use the same proxy with multiple bots. We cannot guarantee you won't hit rate limits. Webhooks with tokens or other requests that don't include the Authorization header are okay, though!

Contributing

Before creating an issue, please ensure that it hasn't already been reported/suggested. See the contribution guide if you'd like to submit a PR.

Help

If you don't understand something in the documentation, you are experiencing problems, or you just need a gentle nudge in the right direction, please don't hesitate to join our official discord.js Server.

Keywords

discord

FAQs

Package last updated on 22 Apr 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts