Skip to content
This repository was archived by the owner on Jun 20, 2022. It is now read-only.

Commit 3745e38

Browse files
committed
Merge pull request #31 from octokit/philosophy
Documenting `go-octokit`'s philosophy
2 parents f33e124 + f9aa75e commit 3745e38

File tree

1 file changed

+53
-11
lines changed

1 file changed

+53
-11
lines changed

README.md

+53-11
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,22 @@
22

33
Go toolkit for the GitHub API.
44

5-
## Hypermedia-driven client
5+
## Status
66

7-
### Show a user
7+
Very experimental. APIs are subject to change.
8+
9+
## Motivation
10+
11+
`go-octokit` is designed to be a hypermedia API client that [wraps](http://wynnnetherland.com/journal/what-makes-a-good-api-wrapper) the [GitHub API](http://developer.github.com/).
12+
13+
## Hypermedia agent
14+
15+
`go-octokit` is hypermedia-driven by default.
16+
Under the hood, it uses [`go-sawyer`](https://github.com/lostisland/go-sawyer), the Go version of [Ruby Sawyer](https://github.com/lostisland/sawyer).
17+
18+
### Hypermedia in go-octokit
19+
20+
Resources in `go-octokit` contain not only data but hypermedia links:
821

922
```go
1023
package main
@@ -23,7 +36,41 @@ func main() {
2336
// Handle error
2437
}
2538

26-
// Do something with user
39+
fmt.Println(user.ReposURL) // https://api.github.com/users/jingweno/repos
40+
}
41+
```
42+
43+
### URI templates
44+
45+
Many hypermedia links have variable placeholders. `go-octokit` supports [URI Templates](http://tools.ietf.org/html/rfc6570) for parameterized URI expansion:
46+
47+
```go
48+
package main
49+
50+
import "github.com/octokit/go-octokit/octokit"
51+
52+
func main() {
53+
url, _ := octokit.UserURL.Expand(octokit.M{"user": "jingweno"})
54+
fmt.Println(url) // https://api.github.com/users/jingweno
55+
}
56+
```
57+
58+
### The Full Hypermedia Experience™
59+
60+
If you want to use `go-octokit` as a pure hypermedia API client, you can
61+
start at the API root and follow hypermedia links which drive the application state transitions:
62+
63+
```go
64+
package main
65+
66+
import "github.com/octokit/go-octokit/octokit"
67+
68+
func main() {
69+
rootService, _ := client.Root(nil)
70+
root, _ := rootService.Get()
71+
72+
usersService, _ := client.Users(root.UserURL, octokit.M{"users": "jingweno"})
73+
user, _ := usersService.Get()
2774
}
2875
```
2976

@@ -59,15 +106,10 @@ func main() {
59106

60107
```
61108

62-
### Exploring hypermedia APIs
63-
64-
```go
65-
rootService, _ := client.Root(nil)
66-
root, _ := rootService.Get()
109+
### Caching
67110

68-
usersService, _ := client.Users(root.UserURL, octokit.M{"users": "jingweno"})
69-
user, _ := usersService.Get()
70-
```
111+
Client-side caching is the #1 thing to do to make a hypermedia client more performant.
112+
We plan to support this in the near future.
71113

72114
More [examples](https://github.com/octokit/go-octokit/blob/master/examples/example.go) are available.
73115

0 commit comments

Comments
 (0)