metamaps--metamaps/realtime
Connor Turland d1680c1895 disable permanent deletion of topics and synapses, except...
when the topic or synapse no longer appears on any maps, and this can currently only be performed over the api
2016-12-14 14:17:55 -05:00
..
global.js disable permanent deletion of topics and synapses, except... 2016-12-14 14:17:55 -05:00
junto.js eslint frontend folder (#923) 2016-11-07 15:25:08 -05:00
map.js eslint frontend folder (#923) 2016-11-07 15:25:08 -05:00
README.md Update README.md 2016-10-22 10:59:43 -04:00
realtime-server.js fix bugs on develop branch 2016-11-09 20:44:00 -05:00
reducer.js Merge branch 'master' into develop 2016-11-09 09:29:30 -05:00
rooms.js [WIP] keep client fresh with junto info globally (#791) 2016-10-21 09:29:04 -04:00
signal.js eslint frontend folder (#923) 2016-11-07 15:25:08 -05:00

Node.js realtime server

To run the server, you need to install the dependencies and run the server. Please ensure you have followed the OS-specific instructions in doc/ to install NodeJS. Once you have node, then you can proceed to install the node packages for the realtime server:

npm install #creates node_modules directory
node realtime/realtime-server.js

That's it!

To run the server as a daemon that will be re-run if it crashes, you can use the forever node package.

sudo npm install -g forever
forever start realtime/realtime-server.js