Explore

Advertise

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Ad

Remove Ads

Pylon

Pylon

5

β€’

0

Invite

Vote (1)

βš’οΈ Build your own Discord bots! Now in beta! βš’οΈ No hosting required πŸ¦„ Pylon.bot πŸ¦„


You write it. We run it.

Build and deploy Discord bots in minutes using our simple online studio.

Online Editor

Build your bot in the browser.

Enjoy built-in revision history, syntax highlighting, code completion, logging, and more!

Instant Deploys

Build, test, deploy, repeat. When you hit Save, your bot is deployed instantly and suffers no event loss during deployments.

Batteries Included!

KV store, webhooks, and more!

Extend your bot’s functionality with our built-in persistent storage, scheduled events, and webhooks!

Serverless Bots

Always on, no hassle.

Under the hood, Pylon uses a lightning-fast JavaScript V8 runtime to power your bots. In addition, the Pylon SDK is fully typed, meaning TypeScript auto-completions and type-checking are built in!

Check out these cool examples

Simple Ping-Pong

discord.registerEventHandler("MESSAGE_CREATE", async (msg) => {
  if (msg.content === "!ping") {
    await msg.reply("Pong!");
  }
})

Web Requests

discord.registerEventHandler("MESSAGE_CREATE", async (msg) => {
  if (msg.content === "!catfact") {
    // Request a random fact about cats
    const req = await fetch("https://catfact.ninja/fact");
    
    // Parse the request's JSON body:
    const data = await req.json();
    // Example data:
    // { "fact": "Cats have supersonic hearing", "length": 28 }

    // Reply to the command with the random cat fact
    await msg.reply(data['fact'])
  }
})

Rich Embed

discord.registerEventHandler("MESSAGE_CREATE", async msg => {
  if (msg.content === "!info") {
    const embed = new discord.Embed();
    embed.setTitle(msg.author.getTag()).setColor(0x00ff00);
    embed.setDescription("User Information Example");
    embed.setThumbnail({ url: msg.author.getAvatarUrl() });
    embed.addField({
      name: "User ID",
      value: msg.author.id,
      inline: false
    });
    embed.setTimestamp(new Date().toISOString());
    await msg.reply({ content: "", embed: embed });
  }
});

Message Reactions

discord.registerEventHandler("MESSAGE_CREATE", async msg => {
  if (!msg.content.toLowerCase().includes("love pylon")) {
    return;
  }
  const newMessage = await msg.reply(`I'm flattered!`);
  await newMessage.addReaction("😊");
});

Psst! Check out what else Pylon is capable of at the docs.

Ratings & Reviews


5

3 reviews

Reviews can be left only by registered users. All reviews are moderated by Top.gg moderators. Please make sure to check our guidelines before posting.

5 stars

3

4 stars

0

3 stars

0

2 stars

0

1 star

0


ClashCrafter
ClashCrafter
β€’

almost 4 years ago

Really good bot. I learned JavaScript with it <3

1


Menin
Menin
β€’

over 3 years ago

The best bot out there. Code what you like and post it. So easy to use. Love it!

1


jack5
jack5
β€’

over 2 years ago

Been using this for several years. Fully customisable and absolutely worth the time investment.

0


Details

Prefix

*

Socials

pylon.bot

Discord Support Server

GitHub

Tags

    Customizable Behavior

    Web Dashboard

    Logging

    Utility

Creators

Spencer

Spencer