uglyog / hal-browser

An API browser for the hal+json media type

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HAL-browser

An API browser for the hal+json media type

Example Usage

Here is an example of a hal+json API using the browser:

http://haltalk.herokuapp.com/explorer/browser.html

About HAL

HAL is a format based on json that establishes conventions for representing links. For example:

{
    "_links": {
        "self": { "href": "/orders" },
        "next": { "href": "/orders?page=2" }
    }
}

More detail about HAL can be found at http://stateless.co/hal_specification.html.

Instructions

All you should need to do is copy the files into your webroot. It is OK to put it in a subdirectory; it does not need to be in the root.

All the JS and CSS dependencies come included in the vendor directory.

TODO

  • Provide feedback to user when there are issues with response (missing self link, wrong media type identifier)
  • Give 'self' and 'curies' links special treatment

About

An API browser for the hal+json media type

License:MIT License


Languages

Language:JavaScript 68.0%Language:HTML 27.9%Language:CSS 4.1%