A simple implementation of Differential Synchronization with JSON Patch over HTTP
- The first file you should be looking at is the
server.js
. This is the entry point to the application. - The
server.js
start running the instance of application that was created by thebuild
function exposed byapp.js
- The
app.js
is the module is used for create an instance of the application that can be run or tested. Thebuild
function also registers the routes as plugins - Finally define the different handlers for different endpoints in the
routes.js
file.