This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
Simple(ish) example of discord gateway | |
This code will get to ready, and then remain connected with heartbeats | |
see https://discordapi.com/topics/gateway for more info | |
zlib compression is implemented as it will be required in gateway v7 (so get used to it now) | |
*/ | |
const WebSocket = require('ws'); // npmjs.org/ws | |
const zlib = require('zlib-sync'); // npmjs.org/zlib-sync | |
const erlpack = require('erlpack'); // github.com/discordapp/erlpack |