IRC client with server-side websocket HTML5 support.
- Web server.
- PHP server. (Optional, for URL summaries)
- MySQL server. (Optional, for URL summaries)
// -------------------------- START OF CONFIG -------------------------- \\
let irc_server_address = 'wss://<IP address or hostname>:<port>/';
let urlify_check = true; // Or false to disable.
// --------------------------- END OF CONFIG --------------------------- \\
Create MySQL database on localhost or elsewhere, the MySQL table is created automatically from PHP script ajax/summary.php, and then edit (or create) ajax/config.php as following :
<?php
$dbname = "..."; // Name of database.
$dbhost = "..."; // Host of database.
$dbuser = "..."; // User of database.
$dbpasswd = "..."; // Password of database.
$dbprefix = "..."; // Prefix of MySQL table name.
It works !
- English
- French
- Works with UnrealIRCd 4.x and later versions : https://www.unrealircd.org/docs/WebSocket_support
- Works with InspIRCd 3.x and later versions : https://docs.inspircd.org/3/modules/websocket/
- Google chrome
- Firefox
- Opera
- Edge
- Safari (Maybe)
Make sure your browser is up to date.
- URL summaries to improve.
- To do responsive design.
- Manage all IRC protocol. /raw sends a raw request to IRC server.
Note : IRC raws not supported are in Javascript console of your web browser.