Files
discord.js/packages/proxy-container/README.md
DD a49ed0a2d5 refactor(proxy): rely on auth header instead (#9422)
* refactor(proxy): rely on auth header instead

* chore: typo

* chore: language

Co-authored-by: Jiralite <33201955+Jiralite@users.noreply.github.com>

* chore: more language

Co-authored-by: Aura Román <kyradiscord@gmail.com>

* chore: more language nitpicks

Co-authored-by: ckohen <chaikohen@gmail.com>

* fix: unnecessary async

---------

Co-authored-by: Jiralite <33201955+Jiralite@users.noreply.github.com>
Co-authored-by: Aura Román <kyradiscord@gmail.com>
Co-authored-by: ckohen <chaikohen@gmail.com>
2023-04-21 20:36:15 +00:00

3.2 KiB


discord.js


Discord server dockerhub version dockerhub pulls Build status

Vercel

About

@discordjs/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 discordjs/proxy

Use it:

import { Client } from 'discord.js';

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

Or with just @discordjs/rest:

import { REST } from '@discordjs/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, and double-check the [documentation][documentation].
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.