Star ✨ on GitHub

Installing

Install discord.js and Moonlink.js (stable and dev builds).

This page gets your project installed and ready to run.

Create a project

mkdir my-moonlink-bot
cd my-moonlink-bot
npm init -y

Install discord.js

npm i discord.js

Install Moonlink.js

npm i moonlink.js

Development build (dev)

Use this when you want the latest fixes/features from the repository:

npm i github:Ecliptia/moonlink.js#dev

Add scripts

In your package.json:

{
  "scripts": {
    "start": "node ."
  }
}