Replay Server
This project is for running a server to hold some replay data for mobx replays, which in turn provides a user-friendly way for the Dev/PM/QA to record everything in an WEBAPP and share with others, when a bug is found or a feature to show.
Running the server
A simple Express app, which use file service to persist data (or you can implement other kind of service to replace it, as long as it implement the interface of the service).
Running the server is straight forward.
git clone GIT_URL MY_PROJECT
cd MY_PROJECT
npm install
PORT=THE_PORT_YOU_PREFER npm start
How to quickly test the api
Too sad, no tests are written at the moment (a todo to follow).
However, when you started the server, you can visit http://localhost:PORT/test-ui/index.html
and have a look at the ajax interactions.