Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Complete chat solution in NodeJs [closed]

Tags:

node.js

I don't know if it is the right place to answer this, but is there any cometchat-like solution for Node ?

(But perhaps I should migrate the question to meta?)

like image 590
user1611830 Avatar asked Oct 15 '12 22:10

user1611830


2 Answers

Google is your friend for find excellent examples: node.js chat socket.io example

One great chat example can be found at:

http://psitsmike.com/2011/09/node-js-and-socket-io-chat-tutorial/

like image 153
DanBaker Avatar answered Oct 06 '22 00:10

DanBaker


Socket.io ships with a chat demo, which is essentially what the Drupal module I blogged about building is based on.

I basically took the socket.io chat demo and reworked it as a Drupal module that uses the Drupal user name as chat user name, and displays the chat interface on a page of a Drupal site.

Thanks for the link, Robert. ;)

like image 35
Will Vincent Avatar answered Oct 06 '22 00:10

Will Vincent