Skip to content

Commit 6a2301c

Browse files
committed
hal-browser is now @curveball/browser
1 parent ebcce20 commit 6a2301c

10 files changed

+31
-27
lines changed

README.md

+14-12
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
1-
HAL browser
2-
===========
1+
Curveball Browser
2+
=================
33

4-
[![Greenkeeper badge](https://badges.greenkeeper.io/evert/hal-browser.svg)](https://greenkeeper.io/)
4+
This package provides a middleware that automatically turns JSON responses
5+
from an API into HTML responses.
56

6-
This package provides a middleware for HAL APIs.
7+
It will do so by looking if the API was accessed by a HTTP client that prefers
8+
HTML. Browsers do this by sending an `Accept: text/html` header.
79

8-
The middleware looks for HAL and JSON responses, and automatically converts
9-
them into a HTML interface if a browser access them.
10+
If this middleware spots this, it will kick in and auto-generate a great looing
11+
HTML document.
1012

11-
It does so via the `Accept: text/html` header. If this header is not provided,
12-
the middleware does nothing.
13+
If this header was not provides, this middleware does nothing.
1314

1415
It automatically decorates the following formats:
1516

1617
* `application/json`
1718
* `application/problem+json`
1819
* `application/hal+json`
1920
* `text/markdown`
20-
21+
* `text/csv`
22+
* `application/prs.hal-forms+json`
2123

2224
Screenshot
2325
----------
@@ -87,12 +89,12 @@ An example. If a API normally returns the following HAL format:
8789

8890
The browser will automatically convert it to this HTML format:
8991

90-
![Screenshot from 0.7.0](https://github.com/evert/hal-browser/blob/master/screenshots/0.7.0.png)
92+
![Screenshot from 0.9.1](https://github.com/evert/hal-browser/blob/master/screenshots/0.9.1.png)
9193

9294
This screenshot is an example of the browser automatically formatting a .csv
9395
and parsing HTTP `Link` headers:
9496

95-
![Screenshot from 0.7.0](https://github.com/evert/hal-browser/blob/master/screenshots/0.7.0-csv.png)
97+
![Screenshot from 0.9.1](https://github.com/evert/hal-browser/blob/master/screenshots/0.9.1-csv.png)
9698

9799
The following example converts this:
98100

@@ -117,7 +119,7 @@ The following example converts this:
117119

118120
And automatically turns the templated link into a form:
119121

120-
![Screenshot from 0.7.0](https://github.com/evert/hal-browser/blob/master/screenshots/0.7.0-form.png)
122+
![Screenshot from 0.9.1](https://github.com/evert/hal-browser/blob/master/screenshots/0.9.1-form.png)
121123

122124

123125
Supported frameworks

assets/themes/curveball/main.css

+3-5
Original file line numberDiff line numberDiff line change
@@ -156,11 +156,7 @@ nav li a img {
156156
nav .alternate {
157157
display: flex;
158158
align-items: center;
159-
padding-left: 30px;
160-
}
161-
162-
nav .alternate a {
163-
min-width: 1px;
159+
padding-left: 30px
164160
}
165161

166162
nav .alternate h3 {
@@ -169,6 +165,8 @@ nav .alternate h3 {
169165
font-size: 16px;
170166
}
171167
nav .alternate a {
168+
min-width: 1px;
169+
margin-left: 3px;
172170
font-size: 90%;
173171
background: #555;
174172
display: inline-block;

package-lock.json

+7-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "hal-browser",
2+
"name": "@curveball/browser",
33
"version": "0.9.1",
4-
"description": "A HAL browser middleware",
4+
"description": "Automatic API browser generator. A middleware that turns your JSON responses into HTML if accessed by a browser.",
55
"main": "dist/index.js",
66
"scripts": {
77
"prepublishOnly": "make build",
@@ -10,7 +10,7 @@
1010
},
1111
"repository": {
1212
"type": "git",
13-
"url": "git+https://github.com/evert/hal-browser"
13+
"url": "git+https://github.com/evert/browser"
1414
},
1515
"files": [
1616
"README.md",
@@ -31,9 +31,9 @@
3131
"author": "Evert Pot (https://evertpot.com/)",
3232
"license": "MIT",
3333
"bugs": {
34-
"url": "https://github.com/evert/hal-browser"
34+
"url": "https://github.com/evert/browser"
3535
},
36-
"homepage": "https://github.com/evert/hal-browser#readme",
36+
"homepage": "https://github.com/evert/browser#readme",
3737
"devDependencies": {
3838
"@curveball/core": "^0.14.2",
3939
"@types/chai": "^4.2.12",
@@ -51,7 +51,8 @@
5151
"nyc": "^15.1.0",
5252
"sinon": "^9.0.3",
5353
"ts-node": "^9.0.0",
54-
"typescript": "^4.0.3"
54+
"typescript": "^4.0.3",
55+
"@types/react-dom": "^16.9.8"
5556
},
5657
"types": "dist/",
5758
"nyc": {
@@ -60,7 +61,6 @@
6061
]
6162
},
6263
"dependencies": {
63-
"@types/react-dom": "^16.9.8",
6464
"csv-parse": "^4.12.0",
6565
"highlight.js": "^10.2.0",
6666
"ketting": "^6.0.2",

screenshots/0.8.6-csv.png

123 KB
Loading

screenshots/0.8.6-form.png

51.7 KB
Loading

screenshots/0.8.6.png

76.5 KB
Loading

screenshots/0.9.1-csv.png

111 KB
Loading

screenshots/0.9.1-form.png

62.3 KB
Loading

screenshots/0.9.1.png

75.1 KB
Loading

0 commit comments

Comments
 (0)