Skip to content
This repository was archived by the owner on Nov 13, 2020. It is now read-only.

Commit 8c6801e

Browse files
committed
Initial commit.
Just a README, a web page, and a shell script. Humble beginnings.
0 parents  commit 8c6801e

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## The JSON API Browser
2+
3+
Got a site that implements [JSON API](http://jsonapi.org)? Point this at it, and explore.
4+
5+
### Usage
6+
7+
```bash
8+
$ ./serve.sh
9+
```
10+
11+
Then open a browser at [http://localhost:8000](http://localhost:8000).

index.html

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head><title>The JSON API Browser</title></head>
4+
<body><h1>The JSON API Browser</h1></body>
5+
</html>

serve.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
3+
python -m SimpleHTTPServer

0 commit comments

Comments
 (0)