Dumbot is a Discord bot built using TypeScript language and Node runtime.
To use Dumbot you need to have:
After you have these tools enter directory where you downloaded the bot and install dependencies.
npm install
or
yarn
Then you can compile:
npm run build
or
yarn build
and run:
node ./dist/index.js
You can also use ts-node with nodemon to run it in development envirionment:
npm run start
or
yarn start