项目作者: short-d

项目描述 :
Reusable framework for micro services & command line tools
高级语言: Go
项目地址: git://github.com/short-d/app.git
创建时间: 2019-08-24T16:55:16Z
项目社区:https://github.com/short-d/app

开源协议:

下载


app

Reusable framework for Go apps & command line tools

Features

  • HTTP router
  • GraphQL
  • GRPC
  • Database migration
  • Environmental variables
  • JWT
  • Email API
  • Timer
  • Logger
  • Terminal GUI

Build your first scalable web service

  1. Create routing.go with the following content:

    1. package main
    2. import (
    3. "fmt"
    4. "net/http"
    5. "github.com/short-d/app/fw/router"
    6. "github.com/short-d/app/fw/service"
    7. )
    8. func main() {
    9. routes := []router.Route{
    10. {
    11. Method: http.MethodGet,
    12. MatchPrefix: false,
    13. Path: "/:name",
    14. Handle: func(w http.ResponseWriter, r *http.Request, params router.Params) {
    15. name := params["name"]
    16. page := fmt.Sprintf(`<h1>Hello, %s!<h1>`, name)
    17. w.Write([]byte(page))
    18. },
    19. },
    20. }
    21. routingService := service.
    22. NewRoutingBuilder("Example").
    23. Routes(routes).
    24. Build()
    25. routingService.StartAndWait(8080)
    26. }
  2. Start the service using this command:

    1. go run routing.go
  3. That’s it! You can now visit the web page at http://localhost:8080/Gopher!

More Examples

Projects using app

  • Short: Easy to use URL shortening service
  • Kgs: Distributed unique key generation service

Contributing

When contributing to this repository, please first discuss the change you wish
to make via Slack channel with the owner
of this repository before making a change.

Please open a draft pull request when you are working on an issue so that the
owner knows it is in progress. The owner may take over or reassign the issue if no
body replies after ten days assigned to you.

Pull Request Process

  1. Update the README.md with details of changes to the interface, this includes
    new environment variables, exposed ports, useful file locations and container
    parameters.
  2. You may merge the Pull Request in once you have the sign-off of code owner,
    or if you do not have permission to do that, you may request the code owner
    to merge it for you.

Code of Conduct

  • Using welcoming and inclusive language
  • Being respectful of differing viewpoints and experiences
  • Gracefully accepting constructive criticism
  • Focusing on what is best for the community
  • Showing empathy towards other community members

Discussions

Please join this Slack channel to
discuss bugs, dev environment setup, tooling, and coding best practices.

Author

Harry Liu - byliuyang

License

This project is maintained under MIT license.