coding-challenges
coding-challenges copied to clipboard
Solution to the Coding Challenges by John Crickett: https://codingchallenges.fyi
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.2 to 1.15.4. Commits 6585820 Release version 1.15.4 of the npm package. 7a6567e Disallow bracketed hostnames. 05629af Prefer native URL instead of deprecated url.parse. 1cba8e8 Prefer native...
Bumps [undici](https://github.com/nodejs/undici) to 5.27.2 and updates ancestor dependency [discord.js](https://github.com/discordjs/discord.js/tree/HEAD/packages/discord.js). These dependencies need to be updated together. Updates `undici` from 5.22.1 to 5.27.2 Release notes Sourced from undici's releases. v5.27.2 Full...
Currently the commands in the server implementation are handled via switch case statements as follows: ```typescript switch (command) { case RedisCommands.PING: this.handlePing(sock, data); break; case RedisCommands.ECHO: this.handleEcho(sock, data); break; case...