botmakerdiscord
Version:
Create an Discord bot easily!
37 lines (27 loc) • 995 B
Markdown
# Discord Bot Maker
Discord Bot Maker is an module that lets you create an Discord Bot easily.
## Installation
Use [`npm`](https://npmjs.com) to download Discord Bot Maker
```bash
$ npm install discordbotmaker
```
## Usage
```js
const Botmaker = require('botmakerdiscord'); // Import the package
const client = new Botmaker.Bot({ // Creates an bot instance
token: 'my-token-here', // Put your bot token here
prefix: 'my-prefix-here' // Put your bot prefix here (How every command starts with)
dmn: true // Disables default message notifications in terminal
})
client.events.on('message', message => { // Wait for a message
console.log(message.content) // Logs message in console
})
```
See other Usage Examples [here](./usage-examples.md).
## Developer
Hey, I'm Lugo_Sieben!
You can contact me on these ways:
__Discord__: `Lugo_Sieben#9999`
__Email__: `lugosieben.com`
## License
[MIT](https://choosealicense.com/licenses/isc/)