Let’s start building a quick, easy, and awesome dashboard in 5 minutes!
Installing Node.js
node -v
in your terminal.Setting up your project
npm
(which comes pre-installed with Node).If you want to use a different package manager like pnpm, yarn or bun you can replace the commands with the proper command name.Navigate to a suitable directory on your machine and create your project’s folder.Opening the terminal
Ctrl + `
(backtick) to open its integrated terminal.Shift + Right-click
inside your project directory and choose the “Open command window here” optionWin + R
and run cmd.exe
then cd
into your project directoryCtrl + Alt + T
.Verifying Node is installed
node -v
to ensure you’ve successfully installed Node.js.Initiating a project folder
package.json
file for you, which keeps track of dependencies of your project as well as some other stuff!It will ask you a sequence of questions, you should answer them as you see fit. If you’re not sure on something or want to skip it; leave it blank and press enter.Once you’re done answering the questions, you’re ready to install discord-dashboard!Installing modules
Creating config.json
config.json
, which will house all our
important (and secret) settings! Paste the following code into the file and
replace as necessary:Creating index.js
index.js
(or anything you’d like) and paste the discord-dashboard handler into it.Generating a license