Files
discordeno/site/tutorial/nodejs/installion.md
Jonathan Ho 987b4058cb Site: update site structure and add architecture page (#2675)
* remove blog

* fix: license

* chore: bump docusaurus

* separate benchmark page

* move to sub folder

* fix blog path

* Chore: update site

* fix: only deploy on push and dispatch

* fix: on:

* ci: merge workflow

* ci: fix if

* refactor: dump preset
2022-12-04 08:36:10 -06:00

967 B

sidebar_position
sidebar_position
2

Installing Node.js and Discordeno

To use the Discordeno library you first need to install Node.js and then Discordeno from NPM.

Go to nodejs.org and download the latest version of Node.js. Open the downloaded file and follow the instructions of the installer to install Node.js.

Create a Folder

Open your file manager and create a new folder (e.g.: discordbot) in your desired directory. Then open the code editor of your choice and create a new file (e.g.: index.js) in the folder you just have created.

Initalize NPM & Install Discordeno

In order to keep track of the dependencies, you need to initialize NPM, which generates a package.json file.

$ npm init --yes

Then you need to install Discordeno. When you want to go along with the wrapper named Discordeno.js, then install it too. Go to your terminal and run the following command:

$ npm install discordeno