-
Notifications
You must be signed in to change notification settings - Fork 52
Interface
It searches through all lists in app, be it routes, requests or history. Search takes a look in route, controller, request, and method name. It's case insensitive.
Surely the main thing in app. Displays every unfiltered route in your application. It also hightlights "bad" routes who miss method or controller. By clicking on method name (like [GET]) you can instantly send request, clicking on name makes route available for editing. If request you're working with has an appropriate route — it will be highlighted in the routes list.
You can save routes and no wonder they require a place to reside. In this list you can, similarly to routes list, send requests, set request for editing and also delete requests.
History just saves all your sent requests. You can clear it to prevent overflow.
Here you can edit some of request's parameters, namely: method and route. You also have an assortment of buttons, which send, save and copy current request. If you worked with Postman, the panel might look familiar for you. That's because we stole design took inspiration from that piece of software.
We have three subpanels here: Data, Headers. Data contains json editor. Headers block, sure enough, manages headers.
And Info shows route related information, like middlewares and controller. It will also warn you if route is missing.
After you've sent request you may easily glance over response, presented, as well, in three panels: Data shows raw response, Headers are self-explanatory, and Preview displays result in either JSONViever or iframe, depending on response format.