Skip to content

Antraeus/comicchat

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

<font face="ms comic sans">

comicchat

Based off Microsoft Comic Chat. Uses node.js and websockets.

Screenshot

Features

  • Comic chat
  • Rooms
  • Notifications
  • Google Translate text-to-speech abuse (Chrome only right now)
  • Basic relay support for animating your (IRC) chat

Usage

  1. Clone repo.
  2. npm install websocket
  3. Change address of server in client/client.js
  4. Change port of server in server/server.js
  5. node server/server.js
  6. Visit client/index.html

Protocol

Connect to the WebSocket server and start pushing JSON. Subject to change.

Send

{
    type: 'join',
    room: 'room'
}
  • history, join, part require room
  • message requires room and text, spoof: true optional for relays

Receive

  • history --- type, history (an array of messages for the requested room)
  • message --- type, room, time, text, author

Relay

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.

TODO

  • More characters
  • More algorithm
  • More styling
  • Cleaner code
  • Everything else

</font>

About

Web client and node.js server based off Microsoft Comic Chat.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 80.7%
  • CSS 12.8%
  • HTML 6.5%