Visualize RESTful JSON APIs in the form of a table. Debug data inconsistencies in the API like a boss.
Run development server (Webpack Development Server):
npm run start-dev
Create a development build:
npm run build-dev
Create a production build:
npm run build-prod
Once you have created a build. Create a docker build using the Dockerfile included in the repo:
docker build . -t=mydockerimage
Run the container:
docker run -t -i -p 8080:8080 -v=`pwd`:/json2tab -w=/json2tab mydockerimage
application is now running at port 8080
npm run build
npm start
docker run -t -i -p 8080:8080 -v=`pwd`:/json2tab -w=/json2tab mydockerimage