From 29b56429b0670c1a25f7de930090aea3777b87aa Mon Sep 17 00:00:00 2001 From: Androz Date: Thu, 12 Dec 2019 15:37:44 +0100 Subject: [PATCH] Update Discord.js Github Name --- 2. Creating The Project.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2. Creating The Project.md b/2. Creating The Project.md index 8f8cc07..ecab6d1 100644 --- a/2. Creating The Project.md +++ b/2. Creating The Project.md @@ -9,14 +9,14 @@ Let's do that now! (You will need to know how to ) 1. ``mkdir my-discord-bot && cd my-discord-bot/`` - This will create the folder for the project and enter in to it. 2. ``touch index.js && npm init --yes`` - This creates a file called ``index.js`` and initializes the project using NPM. 3. ``touch Dockerfile`` - This creates a file for Docker to read from. I will get into this in a later step. -4. ``npm install hydrabolt/discord.js --save`` - This installs the later master branch of discord.js which is recommended. +4. ``npm install discordjs/discord.js --save`` - This installs the later master branch of discord.js which is recommended. 5. ``touch settings.json`` - This creates a configuration file that stores our bot's token. #### Windows 1. ``mkdir my-discord-bot && cd my-discord-bot/`` - This will create the folder for the project and enter in to it. 2. ``type nul > index.js && npm init --yes`` - This creates a file called ``index.js`` and initializes the project using NPM. 3. ``type nul > Dockerfile`` - This creates a file for Docker to read from. I will get into this in a later step. -4. ``npm install hydrabolt/discord.js --save`` - This installs the later master branch of discord.js which is recommended. +4. ``npm install discordjs/discord.js --save`` - This installs the later master branch of discord.js which is recommended. 5. ``type nul > settings.json`` - This creates a configuration file that stores our bot's token.