Skip to content
/ dfx Public
forked from tim-smart/dfx

A Discord library for effect-ts

License

Notifications You must be signed in to change notification settings

fubhy/dfx

This branch is 146 commits behind tim-smart/dfx:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Dec 21, 2023
56f8c3c · Dec 21, 2023
Dec 10, 2023
Dec 19, 2023
Dec 3, 2023
Dec 19, 2023
Jul 10, 2023
Jul 10, 2023
Jul 10, 2023
Aug 29, 2023
Jul 10, 2023
Mar 14, 2022
Aug 29, 2023
Feb 7, 2023
Dec 1, 2022
Dec 21, 2023
Aug 4, 2023
Dec 3, 2023
Mar 22, 2022
Dec 21, 2023
Dec 21, 2023
Jul 10, 2023
Jul 10, 2023
Jul 10, 2023
Jul 10, 2023
Jul 10, 2023
Jul 10, 2023
Jul 10, 2023

Repository files navigation

dfx

Discord

A Discord library built on top of effect

  • Supports both the gateway and webhooks
  • Simple yet powerful abstractions to build Discord bots

Example

import { runMain } from "@effect/platform-node/Runtime"
import { DiscordConfig, Ix } from "dfx"
import { DiscordIxLive, InteractionsRegistry } from "dfx/gateway"
import { Config, Effect, Layer } from "effect"

// Create a config layer
const DiscordConfigLive = DiscordConfig.layerConfig({
  token: Config.secret("DISCORD_BOT_TOKEN"),
})

// Create hello service
const HelloLive = Layer.effectDiscard(
  Effect.gen(function* (_) {
    const registry = yield* _(InteractionsRegistry)

    // Create hello command that responds with "Hello!"
    const hello = Ix.global(
      {
        name: "hello",
        description: "A basic command",
      },
      Effect.succeed({
        type: 4,
        data: {
          content: "Hello!",
        },
      }),
    )

    // register the command(s) and handle errors
    yield* _(
      registry.register(Ix.builder.add(hello).catchAllCause(Effect.logError)),
    )
  }),
).pipe(
  // provide discord interactions layer
  Layer.provide(DiscordIxLive),
)

// Construct the main layer
const MainLive = HelloLive.pipe(Layer.provide(DiscordConfigLive))

// run it
runMain(Layer.launch(MainLive))

About

A Discord library for effect-ts

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 99.4%
  • JavaScript 0.6%