Skip to content

Latest commit

 

History

History
47 lines (37 loc) · 698 Bytes

README.md

File metadata and controls

47 lines (37 loc) · 698 Bytes

Setup Instructions

Linux

  1. Create a new directory

    mkdir my-discord-bot
    cd my-discord-bot
  2. Initialize a new Node.js project

    npm init -y
  3. Install dependencies

    npm install discord.js node-fetch
  4. Start the bot

    node index.js

Windows

  1. Create a new directory

    mkdir my-discord-bot
    cd my-discord-bot
  2. Initialize a new Node.js project

    npm init -y
  3. Install dependencies

    npm install discord.js node-fetch
  4. Start the bot

    node index.js