resource-irc

0.4.2 • Public • Published

irc

for managing communication with irc

API

properties

methods

properties

for managing communication with irc

  • id

    • type : any
  • server

    • description : an irc server

    • properties

      • host

        • description : the hostname of the irc server

        • type : string

        • default : irc.freenode.net

      • port

        • description : the port of the irc server

        • type : number

        • default : 6667

  • nick

    • default : biggie

    • required : true

  • channel

    • default : #big
  • channels

    • type : array
  • message

    • description : an irc message

    • properties

      • options

        • type : object

        • properties

          • host

            • description : the hostname of the irc server

            • type : string

            • default : irc.freenode.net

          • port

            • description : the port of the irc server

            • type : number

            • default : 6667

          • to

            • type : string

            • default : #big

          • message

            • type : string

            • default : big

  • command

    • description : an irc command

    • properties

      • options

        • type : object

        • properties

          • host

            • description : the hostname of the irc server

            • type : string

            • default : irc.freenode.net

          • port

            • description : the port of the irc server

            • type : number

            • default : 6667

          • command

            • type : string

methods

irc.wrapColors(color, message)

wraps text in an irc color code

  • color

    • enum

      • 0 : white

      • 1 : black

      • 2 : dark_blue

      • 3 : dark_green

      • 4 : light_red

      • 5 : dark_red

      • 6 : magenta

      • 7 : orange

      • 8 : yellow

      • 9 : light_green

      • 10 : cyan

      • 11 : light_cyan

      • 12 : light_blue

      • 13 : light_magenta

      • 14 : gray

      • 15 : light_gray

      • 16 : reset

  • message

    • type : string

irc.connect(options, callback)

connects to an irc server

  • options

    • type : object

    • properties

      • host

        • description : the hostname of the irc server

        • type : string

        • default : irc.freenode.net

      • port

        • description : the port of the irc server

        • type : number

        • default : 6667

      • nick

        • default : biggie

        • required : true

      • channel

        • default : #big
      • channels

        • type : array
  • callback

    • type : function

irc.disconnect(options)

disconnects from an irc server

  • options

    • type : object

    • properties

      • host

        • description : the hostname of the irc server

        • type : string

        • default : irc.freenode.net

      • port

        • description : the port of the irc server

        • type : number

        • default : 6667

      • message

        • type : string

        • default : big irc is disconnected (http://big.vc)

irc.send(options, callback)

sends an irc message

  • options

    • type : object

    • properties

      • host

        • description : the hostname of the irc server

        • type : string

        • default : irc.freenode.net

      • port

        • description : the port of the irc server

        • type : number

        • default : 6667

      • to

        • type : string

        • default : #big

      • message

        • type : string

        • default : big

  • callback

    • required : false

    • default : function () {}

irc.receive(options, callback)

receives an irc message

  • options

    • type : object

    • properties

      • host

        • description : the hostname of the irc server

        • type : string

        • default : irc.freenode.net

      • port

        • description : the port of the irc server

        • type : number

        • default : 6667

      • to

        • type : string

        • default : #big

      • message

        • type : string

        • default : big

  • callback

    • required : false

    • default : function () {}

irc.command(options)

sends an irc command

  • options

    • type : object

    • properties

      • host

        • description : the hostname of the irc server

        • type : string

        • default : irc.freenode.net

      • port

        • description : the port of the irc server

        • type : number

        • default : 6667

      • command

        • type : string

irc.join(options)

joins an irc channel

  • options

    • type : object

    • properties

      • host

        • description : the hostname of the irc server

        • type : string

        • default : irc.freenode.net

      • port

        • description : the port of the irc server

        • type : number

        • default : 6667

      • channel

        • default : #big

irc.part(options)

leaves an irc channel

  • options

    • type : object

    • properties

      • host

        • description : the hostname of the irc server

        • type : string

        • default : irc.freenode.net

      • port

        • description : the port of the irc server

        • type : number

        • default : 6667

      • channel

        • default : #big

irc.voice(options)

gives voice to an irc user

  • options

    • properties

      • host

        • description : the hostname of the irc server

        • type : string

        • default : irc.freenode.net

      • port

        • description : the port of the irc server

        • type : number

        • default : 6667

      • channel

        • default : #big
      • channels

        • type : array
      • nick

        • default : biggie

        • required : true

irc.devoice(options)

removes voice from an irc user

  • options

    • properties

      • host

        • description : the hostname of the irc server

        • type : string

        • default : irc.freenode.net

      • port

        • description : the port of the irc server

        • type : number

        • default : 6667

      • channel

        • default : #big
      • channels

        • type : array
      • nick

        • default : biggie

        • required : true

irc.op(options)

gives ops to an irc user

  • options

    • properties

      • host

        • description : the hostname of the irc server

        • type : string

        • default : irc.freenode.net

      • port

        • description : the port of the irc server

        • type : number

        • default : 6667

      • channel

        • default : #big
      • channels

        • type : array
      • nick

        • default : biggie

        • required : true

irc.deop(options)

removes ops from an irc user

  • options

    • properties

      • host

        • description : the hostname of the irc server

        • type : string

        • default : irc.freenode.net

      • port

        • description : the port of the irc server

        • type : number

        • default : 6667

      • channel

        • default : #big
      • channels

        • type : array
      • nick

        • default : biggie

        • required : true

irc.kick(options)

kicks a user from an irc channel

  • options

    • properties

      • host

        • description : the hostname of the irc server

        • type : string

        • default : irc.freenode.net

      • port

        • description : the port of the irc server

        • type : number

        • default : 6667

      • channel

        • default : #big
      • channels

        • type : array
      • nick

        • default : biggie

        • required : true

irc.ban(options)

bans a user from an irc channel

  • options

    • properties

      • host

        • description : the hostname of the irc server

        • type : string

        • default : irc.freenode.net

      • port

        • description : the port of the irc server

        • type : number

        • default : 6667

      • channel

        • default : #big
      • channels

        • type : array
      • nick

        • default : biggie

        • required : true

irc.unban(options)

unbans a user from an irc channel

  • options

    • properties

      • host

        • description : the hostname of the irc server

        • type : string

        • default : irc.freenode.net

      • port

        • description : the port of the irc server

        • type : number

        • default : 6667

      • channel

        • default : #big
      • channels

        • type : array
      • nick

        • default : biggie

        • required : true

dependencies

README auto-generated with docs

Readme

Keywords

none

Package Sidebar

Install

npm i resource-irc

Weekly Downloads

1

Version

0.4.2

License

none

Last publish

Collaborators

  • marak