A Discord bot for displaying NHL games and scores using the NHL api documented by Drew Hines and Discord.js
Clone repository
git clone https://github.com/jdcheek/discord-bot.gitCreate a config.json in root directory
touch config.jsonAdd your bot token, guild id, and client id to config.json.
{
"token": "your-bot-token-here",
"guildId": "guild-id",
"clientId": "client-id"
}# run dev server
npm run dev
# run build
npm run build
# run clean build
npm run clean
# start build
npm run start
# build and start
npm run deploy