Please try in https://onyas.github.io/json-format/
input.json
{
"user_name": "Jack",
"user_address": "New York",
"age": 18,
"books": ["", ""]
}
After format, output.json
{
"userName": "Jack",
"userAddress": "New York",
"age": 18,
"books": [
"",
""
]
}
npm install -g create-react-app
npx create-react-app json-format
cd json-format
npm start
npm install gh-pages --save-dev
When there are new changes, execute this command to deploy the latest code
npm run deploy