0.3.1-alpha • Published 4 years ago

@evolvejs/evolvejs v0.3.1-alpha

Weekly downloads
-
License
AGPL-3.0-or-later
Repository
github
Last release
4 years ago

What is EvolveJS?

EvolveJS is a Discord Library in which bots can be made. We provide high control over the module so that the customizability can be the top of the level. Have fun with the library and happy coding :)

Installation

Using the Node Package Manager (NPM)

npm install @evolvejs/evolvejs

Important

You need the following things before you can kick off with EvolveJS:

Documentation and Support

Basic Startup Guide

Example code for running the client

const { EvolveBuilder, GatewayIntents, CacheOptions } = require("@evolvejs/evolvejs")
const client = new EvolveBuilder()
                    .setToken("")
                    .setShards(2)
                    .enableIntents(GatewayIntent.GUILD)
                    .enableCache(CacheOptions.GUILD)
                    .build()

client.on("clientReady", () => {
  console.log(client.user.username)
})

client.on("newMessage", (event) => {
  if(msg.content == "ping") {
    event.channel.send("Pong")
  }
})

Author

0.3.1-alpha

4 years ago

0.2.9-alpha

4 years ago

0.3.0-alpha

4 years ago

0.2.8-alpha

4 years ago

0.2.7-alpha

4 years ago

0.2.6-alpha

4 years ago

0.2.5-alpha

4 years ago

0.2.4-alpha

4 years ago

0.2.3-alpha

4 years ago

0.2.2-alpha

4 years ago

0.2.1-alpha

4 years ago

0.2.0-alpha

4 years ago

0.1.9-alpha

4 years ago

0.1.8-alpha

4 years ago

0.1.6-alpha

4 years ago

0.1.5-alpha

4 years ago

0.1.7-alpha

4 years ago

0.1.4-alpha

4 years ago

0.1.3-alpha

4 years ago

0.1.2-alpha

4 years ago

0.1.1-alpha

4 years ago

0.1.0-alpha

4 years ago

0.0.10-alpha

4 years ago

0.0.9-alpha

4 years ago

0.0.8-alpha

4 years ago

0.0.7-alpha

4 years ago

0.0.6-alpha

4 years ago

0.0.4-alpha

4 years ago

0.0.3-alpha

4 years ago

0.0.5-alpha

4 years ago

0.0.2-alpha

4 years ago

0.0.1-alpha

4 years ago