This is an experiment on sockets and building a messaging client using zeromq that can hopefully be a primer one day.
I haven't tried this on a linux distribution yet, so for that please visit this link (the debian solution will work on any ubuntu distributions, because ubuntu is built on top of debian anyway)
OSX
- Make sure you have
Homebrewinstalled, if not here's a link brew install zeromq- node/iojs (I use
nvm)
Server
I'm using babel for development, because I'm using all the ES6 goodies, got too used to it, you have the option of NOT doing that, it's entirely up to you.
- run
npm install - run
npm run build(just once if it's your first time) - run
npm run watchfor development - run
npm run serverto run all the servers concurrently
Client
Still working on it
I'm trying to find a solution for a chat client (client written in react + flux)