mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
Co-authored-by: Souji <timoqueezle@gmail.com> Co-authored-by: Noel <buechler.noel@outlook.com>
3.0 KiB
3.0 KiB
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 -e DISCORD_TOKEN=abc 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',
});
Links
- Website (source)
- [Documentation][documentation]
- Guide (source) Also see the v13 to v14 Update Guide, which includes updated and removed items from the library.
- discord.js Discord server
- Discord API Discord server
- GitHub
- Related libraries
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.