Skip to content

lteu/chat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Chat Room

This chat room aimes to demonstrate the basic functions of Node.js, Socket.io and its integration with php.

In particular, it solves parts of the homeworks assigned by the socket.io tutorial

  • Broadcast a message to connected users when someone connects or disconnects, ok
  • Add support for nicknames, ok
  • Don’t send the same message to the user that sent it himself. Instead, append the message directly as soon as he presses enter. missing
  • Add “{user} is typing” functionality. missing
  • Show who’s online. ok
  • Add private messaging. missing

more features:

  • get list of clients in a specific room

Besides, we'll see also how to send message from outside world (how php sends json/message to nodejs and nodejs distributes it to online users) without using Redis. On the socket.io website, they propose to use socket.io-redis and socket.io-emitter, however this is no documentation and demo available. And it seems that, this requires Redis server running on another port, it means you need to run both nodejs and redis server in the same time and use the publish subscribe paradigm to accomplish the task. For the purpose of reducing the configuration complexity, such task could also be achieved by only using the express.io framework where nodejs could make available a namespace for php program to communicate.

To start the demo, we assume you have already node.js installed.

  • configuration

$npm install

  • launch app

$node app.js

$php test.php

References:

Execution Example:

Demo

About

Chat Room Demo with NodeJS

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published