<font face="ms comic sans">
Quick and dirty. Based off Microsoft Comic Chat. Uses node.js and websockets.
- Comic chat
- Rooms
- Notifications
- Text-to-speech via Web Speech API
- Basic relay support for animating your (IRC) chat
- Clone repo.
npm install
oryarn install
- Change address of server in
client/js/client.js
- Change port of server in
server/server.js
node server/server.js
ornpm start
, args--port 8084
(default),--historySize 500
(default)- Visit
client/index.html
- Deploy the client to
gh-pages
withnpm run deploy
Connect to the WebSocket server and start pushing JSON. Subject to change.
{
type: 'join',
room: 'room'
}
history
,join
,part
requireroom
message
requiresroom
andtext
,spoof: true
optional for relays
history
---type
,history
(an array of messages for the requested room)message
---type
,room
,time
,text
,author
If you want to watch your Best Internet IRC Friends in a voiced comic you can configure relay/relay.js
and then run it with node relay/relay.js
.
- Tests
</font>