Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/luciopaiva/socketio-with-express

Sample script demonstrating how to run Express with socket.io.
https://github.com/luciopaiva/socketio-with-express

express nodejs socket-io

Last synced: about 2 months ago
JSON representation

Sample script demonstrating how to run Express with socket.io.

Awesome Lists containing this project

README

        

# socket.io with Express

This demo shows how to establish a websocket connection and send and receive messages through socket.io.

Make sure you have nvm installed and run:

git clone [email protected]:luciopaiva/socketio-with-express.git
cd socketio-with-express
nvm install
npm install

Then start the sample server:

node server

And finally head your browser to http://localhost:3000 to see it working.

---

Also see [how to use socket.io with Restify](https://github.com/luciopaiva/socketio-with-restify).