discord-jesse

A discord api wrapper

Usage no npm install needed!

<script type="module">
  import discordJesse from 'https://cdn.skypack.dev/discord-jesse';
</script>

README

Discord-Jesse

Important: Discord-Jesse is a brand-new project and is not, what-so-ever finished, please think before using as there are much better alternatives at this time.

Examples:

var Jesse = require("discord-jesse");
var client = Jesse();

client.on("create message", function (message) {
  if (message.content == "/ping") {
    message.channel.message("pong!");
  }
});

client.connect("{token}");

Docs:

For a full, complete list of docs, go to the official documentation website (Coming soon).

Session

var client = require("discord-jesse")();
  • .connect({string: token});
    • string: token: The token it gives when you create a bot user for your app.