This is a IRC bouncer written in JavaScript for Node.js. The name "homura" is from madoka which is the IRC bouncer I used first ;)
This project is under DEVELOPMENT. APIs are unstable and features are not implemented yet.
$ cd homura_workingdir
$ npm install homura
$ vim config.json // see Configuration section
$ ./node_modules/.bin/homura -v
To connect to homura with your IRC client, use the host and the port configured in config.json
.
You have to set the IRC user name like USERNAME@BOUNCERNAME
. (e.g. akemi@freenode
or akemi@ircnet
)
USERNAME
is an actual user name for IRC networks,
and BOUNCERNAME
is a name that homura uses to decide which IRC network connect to.
$ npm install -g homura
homura uses a JSON format configuration file.
The default path of the configuration file is config.json
of current directry
that homur is running on, and you can also specify config.json
by using
--config
option.
$ homura --config /path/to/your_config.json
config.json
defines options below:
-
host
(required) : Host the client should connect to homura -
port
(required) : Port the client should connect to homura -
password
(optional) : Password that is required to connect to homura -
tls
(optional) : With this option, the client should connect to homura using TLS. The passed Object should be used fortls.createServer
options directry. Forkey
,cert
,ca
andpfx
options, you can pass the file path by appending_file
to the option name likekey_path
. -
bouncers
(required) : An Array of IRC bouncer settings.-
name
(required) : name to identify network. You can connect this network withUSERNAME@{name}
-
host
(required) : IRC server host -
port
(required) : IRC server port -
nick
(required) : IRC nick -
user
(optional) : IRC user. Default is the same as the nick -
real
(optional) : IRC real name. Default is the same as the nick -
encoding
(optional) : The character encoding used on this IRC network. Default isUTF-8
-
tls
(optional) : With this option, homura makes the connection to IRC network using TLS. The passed Object should be used fortls.connect
options directry. Forkey
,cert
,ca
andpfx
options, you can pass the file path by appending_file
to the option name likekey_path
.
-
{
"host" : "localhost",
"port" : 6667,
"password" : "YOURPASSWORD",
"tls" : {
"key_file" : "/absolute/path/to/your/privatekey.pem",
"cert_file" : "/absolute/path/to/your/cetificate.pem",
// and you can put tls.createServer options here.
},
"bouncers" : [
{
"name" : "freenode",
"host" : "hubbard.freenode.net",
"port" : 7000,
"nick" : "YOURNICK",
"user" : "YOURUSER",
"real" : "YOURNAME",
"encoding" : "UTF-8",
"tls" : {
"ca_file" : "/absolute/path/to/your/ca.pem",
// and you can put tls.connect options here.
}
},
{
"name" : "ircnet",
"encoding" : "ISO-2022-JP",
"server" : "irc.media.kyoto-u.ac.jp",
"port" : 6667,
"nick" : "YOURNICK",
"user" : "YOURUSER",
"real" : "YOURNAME",
}
],
"modules" : [
{
"name" : "log",
"dir" : "/path/to/logs"
},
{
"name" : "log-buffer",
"size" : 100
},
{
"name" : "auto-join",
"channels" : {
"freenode" : [ "#autojoinchan1", "#autojoinchan2" ],
"ircnet" : [ "#autojoinchan3" ]
}
},
{
"name" : "auto-reply"
},
{
"name" : "auto-away",
"message" : "oh I'm away from a keyborad"
},
{
"name" : "away-nick",
"awayNick" : "YOURNICK_AWAY"
},
{
"name" : "auto-nickserve-identify",
"passwords" : {
"freenode" : "PASSWORD"
}
}
]
}
Start the homura with config.json
in current directory.
$ homura
or specify config.json
by --config
option.
$ homura --config /path/to/your_config.json
Please specify -v
or --verbose
options to see what the homura is doing.
--debug
may be too noisy (prints the same IRC messages 4 times...) .
$ homura -v
$ homura --debug
Modules are placed under modules
directory. You can enable modules and can pass options to modules in config.json
. Please see Configuration section.
Writes out logs to files.
- dir : Directory to save log files in
- format : Format of the log filename (e.g.
{bouncer}-{channel}-{year}{month}{date}.log
)
Buffres conversation logs for each target (channel or user), and sends logs as notice when you connect to homura.
- size : Buffer size of logs
Joins to specified channels when homura has connected to network.
- channels : Object that maps network-name-key to Array of channel name to join.
Replies a message automatically while you are not connected to homura.
- message : Message to reply
Sends AWAY message automatically when all clients disconnected.
- message : AWAY message
Changes nick automatically when you AWAY
- awayNick : Nick name when you are AWAY
Send NickServe Identify command automatically at start of connection
- passwords : Object that contains bouncer name and password pairs.
- @hakobe
Licensed under the MIT License