Files
discord.js/packages/proxy-container
2023-02-27 21:55:46 +01:00
..
2022-09-01 21:26:09 +02:00
2022-06-17 23:29:50 +02:00
2022-06-17 23:29:50 +02:00
2022-07-22 01:32:19 +02:00
2022-06-17 23:29:50 +02:00
2022-07-22 01:32:19 +02:00
2022-06-17 23:29:50 +02:00
2023-02-27 21:55:46 +01:00
2022-06-19 13:19:24 +02:00


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 -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',
});

Contributing

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.