- clone the repo
- cd to the repo directory
- run
npm install
- run
npm start
- go to http://localhost:5000
- use docker image from docker hub
docker run -it --rm --name="json-diff" -p 5000:5000 jsondiff/online-json-diff
or build docker image yourself
docker build -t online-json-diff . # run in repo root directory
docker run -it --rm --name="json-diff" -p 5000:5000 online-json-diff
- go to http://localhost:5000