Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/softius/go-restful-guide
A guide to build RESTful API using Go language
https://github.com/softius/go-restful-guide
Last synced: about 2 months ago
JSON representation
A guide to build RESTful API using Go language
- Host: GitHub
- URL: https://github.com/softius/go-restful-guide
- Owner: softius
- License: mit
- Created: 2016-01-08T14:46:56.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-13T11:39:46.000Z (about 9 years ago)
- Last Synced: 2023-03-24T07:03:02.806Z (almost 2 years ago)
- Language: Go
- Size: 5.86 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-restful-guide
A guide to build RESTful API using Go language## Overview
This repository covers how to use Go language to build a RESTful API. All examples are organised in separated directories, each one covering a different concept from a basic API Server to API Versioning.* Use of third-party packages has been kept to the minimum
* Use of web frameworks has been also avoided intenionally
* All examples use JSON and in some cases both JSON and XML (mostly content negotiation examples).## Running examples
Examples can be executed from the parent directory as follows```
go run /*.go
```For instance, to execute *echo* example:
```
go run echo/*.go
```