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-restify

Fully functional example showing how to run socket.io with restify.
https://github.com/luciopaiva/socketio-with-restify

nodejs restify socket-io

Last synced: 15 days ago
JSON representation

Fully functional example showing how to run socket.io with restify.

Awesome Lists containing this project

README

        

# socket.io with Restify

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-restify.git
cd socketio-with-restify
nvm install
npm install

Then start the sample server:

node server

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

---

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