namespace IRC.options

View Source on GitHub →

Description

Default global options, all instances will inherit these options.

Defaults

 IRC.options =
   { server:   '127.0.0.1'
   , port:     6667
   , encoding: 'ascii'
   , nick:     'js-irc'
   , log:      true
   , die:      false
   , flood_protection: false
   , user:
     { username:   'js-irc'
     , hostname:   'thetubes'
     , servername: 'tube1'
     , realname:   'Javascript Bot'
     }
   }