github jeromeludmann/deno-irc v0.8.4

latest releases: v0.16.0, v0.15.0, v0.14.1...
2 years ago

Features

Chan Mode Aliases

Allows to use client.mode aliases:

client.op('#channel', 'nick'); // gives operator status to 'nick'
client.deop('#channel', 'nick'); // takes operator status from 'nick'

client.halfop('#channel', 'nick'); // gives half-operator status to 'nick'
client.dehalfop('#channel', 'nick'); // takes half-operator status from 'nick'

client.voice('#channel', 'nick'); // gives voice status to 'nick'
client.devoice('#channel', 'nick'); // takes voice status from 'nick'

client.ban('#channel', 'nick!user@host'); // sets ban 'nick!user@host'
client.unban('#channel', 'nick!user@host'); // unsets ban 'nick!user@host'

Internal

Multi Events

Adds RAW_EVENTS and generateRawEvents helpers.

Don't miss a new deno-irc release

NewReleases is sending notifications on new releases.