###READ ME ####1.Getting start with pretty show
The pretty show is supported to show your json string as table,xml,json formatter and other. The basic result like this:
```javascript //show simple json in console { "person": [ { "age": 24, "birthday": "1990-2-23", "city": "shenzhen", "conutry": "China", "height": "166cm", "name": "wang" }, { "age": 25, "birthday": "1989-5-23", "city": "changsha", "conutry": "China", "height": "175cm", "name": "xu" }, { "age": 22, "birthday": "1992-3-21", "city": "fujian", "conutry": "China", "height": "180cm", "name": "xie" } ] } ``` -->console+----+---+------+--------+---------+-------+ |name|age|height|city |birthday |conutry| +----+---+------+--------+---------+-------+ |wang|24 |166cm |shenzhen|1990-2-23|China | +----+---+------+--------+---------+-------+ |xu |25 |175cm |changsha|1989-5-23|China | +----+---+------+--------+---------+-------+ |xie |23 | 180cm|fujian |1992-3-21|China | +----+---+------+--------+---------+-------+ |wang|24 |166cm |shenzhen|1990-2-23|China | +----+---+------+--------+---------+-------+
####2.Document
- 1.Provided RestClient api to send rest message,we supported post,get,patch,delete,put and head method.
- 2.Provided the formatter for creating pretty print in console,we supported json,table,xml,yaml now.
- 3.Provided parameter parser in future.