A simple IRC web client
Find a file
2020-08-13 11:04:39 +02:00
components Clear error when submitting connect form 2020-08-10 14:57:54 +02:00
lib Improve SASL error message 2020-08-10 15:01:48 +02:00
.editorconfig Add .editorconfig 2020-07-22 14:51:37 +02:00
.gitignore Add dev server 2020-06-14 14:49:52 +02:00
commands.js Add /notice command 2020-08-13 11:04:39 +02:00
index.html Add <noscript> message 2020-06-24 15:43:19 +02:00
keybindings.js Add Alt+Up/Down key bindings 2020-08-03 15:49:30 +02:00
LICENSE Initial commit 2020-04-24 19:03:43 +02:00
package-lock.json Linkify messages 2020-06-25 17:27:24 +02:00
package.json Linkify messages 2020-06-25 17:27:24 +02:00
README.md readme: add screenshot 2020-07-24 09:51:02 +02:00
state.js Add keybinding infrastructure 2020-07-23 10:06:12 +02:00
style.css Add error reporting on connect and main page 2020-08-08 10:34:45 +02:00

gamja

A bare-bones IRC web client.

screenshot

Usage

Requires an IRC WebSocket server.

First install dependencies:

npm install --production

soju

Add a WebSocket listener to soju, e.g. listen wss://127.0.0.1:8080.

Configure your reverse proxy to serve gamja files and proxy /socket to soju.

webircgateway

Setup webircgateway to serve gamja files:

[fileserving]
enabled = true
webroot = /path/to/gamja

Then connect to webircgateway and append ?server=/webirc/websocket/ to the URL.

Development server

Start your IRC WebSocket server, e.g. on port 8080. Then run:

npm install
npm start

This will start a development HTTP server for gamja. Connect to it and append ?server=ws://localhost:8080 to the URL.

Contributing

Send patches on the mailing list, report bugs on the issue tracker.

License

AGPLv3, see LICENSE.

Copyright (C) 2020 The gamja Contributors