Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wantedly/subee
✉️ 🐝 It's not only a bee, but a message - Pub/Sub Worker Framework Implementation
https://github.com/wantedly/subee
golang pubsub
Last synced: about 2 months ago
JSON representation
✉️ 🐝 It's not only a bee, but a message - Pub/Sub Worker Framework Implementation
- Host: GitHub
- URL: https://github.com/wantedly/subee
- Owner: wantedly
- License: mit
- Created: 2019-02-08T08:18:07.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T05:22:42.000Z (about 2 years ago)
- Last Synced: 2024-06-21T02:16:08.897Z (7 months ago)
- Topics: golang, pubsub
- Language: Go
- Homepage:
- Size: 221 KB
- Stars: 48
- Watchers: 50
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![subee](docs/subee.png)
[![CircleCI](https://circleci.com/gh/wantedly/subee/tree/master.svg?style=svg)](https://circleci.com/gh/wantedly/subee/tree/master)
[![latest](https://img.shields.io/github/release/wantedly/subee.svg)](https://github.com/wantedly/subee/releases/latest)
[![GoDoc](https://godoc.org/github.com/wantedly/subee?status.svg)](https://godoc.org/github.com/wantedly/subee)
[![Go Report Card](https://goreportcard.com/badge/github.com/wantedly/subee)](https://goreportcard.com/report/github.com/wantedly/subee)
[![license](https://img.shields.io/github/license/wantedly/subee.svg)](./LICENSE)Subee (pronounce `/ˈsʌbiː/`) is a framework for Pub/Sub subscriber worker for Go.
## Examples
- [Your first app with Google Cloud Pub/Sub](_examples/your-first-cloudpubsub-app/) - start here!
## CLI
We offer an optional cli tool to develop with subee faster.
```
$ subee helpUsage:
subee [command]Available Commands:
generate Generate a new code
help Help about any command
start Build and start subscribers
version Print the version informationFlags:
-h, --help help for subeeUse "subee [command] --help" for more information about a command.
```### Installing
#### macOS
```
brew install wantedly/tap/subee
```#### Other platforms
You can download prebuilt binaries for each platform in the [releases](https://github.com/wantedly/subee/releases) page.
### Build from source
```
go get github.com/wantedly/subee/cmd/subee
```