Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/256dpi/jsonapi

A fundamental and extendable JSON API library for Go.
https://github.com/256dpi/jsonapi

go golang json-api

Last synced: 22 days ago
JSON representation

A fundamental and extendable JSON API library for Go.

Awesome Lists containing this project

README

        

# jsonapi

[![Test](https://github.com/256dpi/jsonapi/actions/workflows/test.yml/badge.svg)](https://github.com/256dpi/jsonapi/actions/workflows/test.yml)
[![GoDoc](https://godoc.org/github.com/256dpi/jsonapi?status.svg)](http://godoc.org/github.com/256dpi/jsonapi)
[![Release](https://img.shields.io/github/release/256dpi/jsonapi.svg)](https://github.com/256dpi/jsonapi/releases)

**A fundamental and extendable JSON API library for Go.**

Package [`jsonapi`](http://godoc.org/github.com/256dpi/jsonapi) provides structures and functions to implement [JSON API](http://jsonapi.org) compatible APIs. The library can be used with any framework and is built on top of the standard Go http library.

## Extensions

### Custom Actions

The package supports the non-standard but widely adopted "custom actions" extension to support the following patterns:

```
GET /posts/highlighted
DELETE /posts/cache
POST /posts/1/publish
DELETE /posts/1/history
```

### Cursor Pagination

The package supports the non-standard but documented ["cursor pagination"](https://jsonapi.org/profiles/ethanresnick/cursor-pagination) profile.

## Examples

The testing [server](https://github.com/256dpi/jsonapi/blob/master/server.go) implements a basic API server using the standard HTTP package.

## Installation

Get the package using the go tool:

```bash
$ go get -u github.com/256dpi/jsonapi/v2
```

## License

The MIT License (MIT)

Copyright (c) 2016 Joël Gähwiler