Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 1.09 KB

README.md

File metadata and controls

33 lines (20 loc) · 1.09 KB

Flutter Socket.IO Chat

This app is just a demo app to teach the idea and the tools to use to create a simple Socket.IO chat.

Big thanks to joyceHong0524's amazing Android native project.

Features

  • Join room.
  • Send messages to a particular room you joined.
  • Showing typing indication to the users in the same room.

Runing the server (Node.js)

  • Clone the project, run: git clone https://github.com/AhmedAbouelkher/flutter_socket_io_chat.git
  • Download and Install Node.js.
  • Go into the flutter project folder, run: cd path/to/project
  • Go into "server" folder, run: cd server/ ( or just run: cd path/to/project/server/ )
  • Run: npm install
  • Run: node . ( or just run: npm app.js )

Enjoy