sleepy

rest for go

  • Owner: dougblack/sleepy
  • Platform:
  • License:: GNU General Public License v3.0
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

Sleepy

I wrote about the creation of sleepy
here.

A RESTful framework for Go

Sleepy is a micro-framework for building RESTful APIs.

package main

import (
    "net/url"
    "net/http"
    "github.com/dougblack/sleepy"
)

type Item struct { }

func (item Item) Get(values url.Values, headers http.Header) (int, interface{}, http.Header) {
    items := []string{"item1", "item2"}
    data := map[string][]string{"items": items}
    return 200, data, http.Header{"Content-type": {"application/json"}}
}

func main() {
    item := new(Item)

    api := sleepy.NewAPI()
    api.AddResource(item, "/items")
    api.Start(3000)
}

Now if we curl that endpoint:

$ curl localhost:3000/items
{"items": ["item1", "item2"]}

sleepy has not been officially released yet, as it is still in active
development.

Docs

Documentation lives here.

License

sleepy is released under the MIT License.

Main metrics

Overview
Name With Ownerdougblack/sleepy
Primary LanguageGo
Program languageGo (Language Count: 2)
Platform
License:GNU General Public License v3.0
所有者活动
Created At2014-01-24 06:20:44
Pushed At2017-11-26 18:15:34
Last Commit At2017-09-15 10:47:51
Release Count0
用户参与
Stargazers Count670
Watchers Count31
Fork Count52
Commits Count64
Has Issues Enabled
Issues Count10
Issue Open Count5
Pull Requests Count8
Pull Requests Open Count5
Pull Requests Close Count8
项目设置
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private