Skip to content

adammendoza/rest

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A RESTful HTTP client and server.

goci:

docs: http://go.pkgdoc.org/github.com/nathankerr/rest

Install by running:

go get github.com/nathankerr/rest

Checkout examples/snips/snips.go for a simple client and server example

rest uses the standard http package by adding resource routes. Add a new route by:

rest.Resource("resourcepath", resourcevariable)

and then use http as normal.

A resource is an object that may have any of the following methods which respond to the specified HTTP requests:

GET /resource/ => Index(http.ResponseWriter, *http.Request)
GET /resource/id => Find(http.ResponseWriter, id string, *http.Request)
POST /resource/ => Create(http.ResponseWriter, *http.Request)
PUT /resource/id => Update(http.ResponseWriter, id string, *http.Request)
DELETE /resource/id => Delete(http.ResponseWriter, id string, *http.Request)
OPTIONS /resource/ => Options(http.ResponseWriter, id string, *http.Request)
OPTIONS /resource/id => Options(http.ResponseWriter, id string, *http.Request)

The server will then route HTTP requests to the appropriate method call.

The snips example provides a full example of both a client and server.

About

RESTful HTTP service engine for Go

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 100.0%