Slack bot for JSON

Format, minify, and view JSON

Add to Slack
                  

Format

Quickly format JSON with 2 spaces

/json fmt {"first":"John","last":"Doe","registered":false,"height":182.88,"address":null}
                
{
  "first": "John",
  "last": "Doe",
  "registered": false,
  "height": 182.88,
  "address": null
}
                

Format with custom number of spaces

/json fmt 4 {"first":"John","last":"Doe","registered":false,"height":182.88,"address":null}
                
{
    "first": "John",
    "last": "Doe",
    "registered": false,
    "height": 182.88,
    "address": null
}
                

Minify

You can also minify JSON

/json minify {
    "first": "John",
    "last": "Doe",
    "registered": false,
    "height": 182.88,
    "address": null
    }
                
{"first":"John","last":"Doe","registered":false,"height":182.88,"address":null}
                

Feedback

You can send feedback directly through Slack

/json feedback Cool bot!
                

You can also send structured feedback this way

/json feedback {"message": "Can you make it format with tabs?", "contact": "joe@company.com"}