1.0.0 • Published 5 years ago

@enitoni/gears-ws v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

gears-ws

This package adds ws bindings to Gears.

Client usage

import { Adapter, Bot, CommandBuilder } from "@enitoni/gears-ws/client"
import { matchPrefixes } from "@enitoni/gears"

const adapter = new Adapter({
  path: "ws://localhost:1337"
})

const command = new CommandBuilder()
  .match(matchPrefixes("!test"))
  .use(context => {
    const { message } = context

    return message.reply("Got your message!")
  })
  .done()

const bot = new Bot({
  adapter,
  commands: [command]
})

bot.start().then(() => {
  // bot is running, log something here if you want
})

Server usage

Server usage is the same, except for a few differences:

import { Adapter, Bot, CommandBuilder } from "@enitoni/gears-ws/server"
import { matchPrefixes } from "@enitoni/gears"

const adapter = new Adapter({
  port: 1337
})

const command = new CommandBuilder()
  .match(matchPrefixes("!test"))
  .use(context => {
    const { message } = context

    return message.reply("Got your message!")
  })
  .done()

const bot = new Bot({
  adapter,
  commands: [command]
})

bot.start().then(() => {
  // bot is running, log something here if you want
})

If you wish to get the socket from the message, you can access it via message.socket