mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-14 10:33:30 +01:00
minor small fixes
This commit is contained in:
44
README.md
44
README.md
@@ -1,2 +1,44 @@
|
||||
# discord.js
|
||||
A JS interface for the Discord API.
|
||||
Discord.js is a node module that allows you to interface with the [Discord](https://discordapp.com/) API for creation of things such as bots or loggers.
|
||||
|
||||
### Installation
|
||||
``npm install discord.js``
|
||||
|
||||
### Example usage
|
||||
```js
|
||||
var Discord = require("discord.js");
|
||||
|
||||
var myBot = new Discord.Client();
|
||||
|
||||
myBot.login("discord email", "discord password", function(e) {
|
||||
|
||||
if(e){
|
||||
console.log("Couldn't log in");
|
||||
return;
|
||||
}
|
||||
|
||||
myBot.on("disconnected", function() {
|
||||
console.log("Disconnected!");
|
||||
process.exit(0);
|
||||
});
|
||||
|
||||
myBot.on("ready", function(e) {
|
||||
console.log("Ready to go!");
|
||||
});
|
||||
|
||||
myBot.on("message", function(message) {
|
||||
|
||||
if(message.content === "Ping!"){
|
||||
|
||||
myBot.sendMessage(message.channel, "Pong!");
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
```
|
||||
### TODO
|
||||
* Documentation
|
||||
* Being able to cache new servers and channels as well as ones that are deleted - this is currently only done when a bot is created
|
||||
|
||||
Reference in New Issue
Block a user