This is a new concept for an always-on web-based IRC client. WebIRC runs as a server and is always connected to your favorite IRC networks. Seamlessly open the same session from home, work, and your mobile devices to continue exactly where you left off.
- Clone the repo, cd into it.
- Run
npm install
- Copy config.json.example to config.json and edit it to set the server details.
- If you want HTTPS (highly recommended for any real use), run
./makecert.sh
and then set"port": 28443
in config.json under"https"
. You should also set the HTTP port to null at this point to accept only HTTPS. - Copy
user.json.example
tousers/me.json
(and create the users directory). Edit the file to set your user details. - Run
npm start
. - Visit
http://localhost:28080
(or whatever port you've set in config.json) to access the client.
Try logging in from your iPad at the same time and see how it runs smoothly with multiple simultaneous sessions (that's part of the goal for this project).
- Smart tab auto-complete prioritizing recent activity, including nicknames of those who recently left/quit
- All state (chats with history, channels, servers) persists through restarts and updates
- Paste multi-line messages
- Connect to IRC servers using SSL
- Connect to multiple servers at the same time
- Webkit notifications for when your name is mentioned
- Chatbox history for repeating/modifying commands (up/down arrow keys)
- Clickable links in messages, including channel links
- Timestamps on messages by hovering over them
- /join #channel, /part #channel
- /msg to start a private chat
- /mode #channel to set channel modes
- /hop to rejoin the current channel
- /server [host] [port] [password] to connect to a new server in the current server window. Prefix the port with + for SSL.
- /sessions to list currently logged-in sessions, or /logout [all]
- All unrecognized commands are treated as raw and sent to the server directly. For example, you can do:
/privmsg #chan :text
- Make sure WebIRC is not running. (Adding users at runtime is coming soon)
- Copy
user.json.example
tousers/USERNAME.json
. - Edit the file and set the user's details.
- File transfers
- Scripting engine
MIT