This repo contains the Node.js backend API service required by the syncmarx web extension.
The production environment currently resides at syncmarx.com. The API also has a front-end interface located under the public/
folder that is shown at this domain.
First install latest version of Node.js. Then run the following via command-line:
npm install
npm run start
Install Docker, then build and run:
docker compose build
docker compose up -d
The above will start a simple HTTP server listening for incoming requests based on the settings you provide in the .env
file.
The syncmarx web extension utilizes this API in order to make the initial handshake required to obtain an API token for the desired third party service (Dropbox, Google Drive, Box, etc.).
When using in a production environment, make sure to place the app behind a secure HTTPS layer.