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: 15 days 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 (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-01-15T07:08:54.000Z (3 months ago)
- Last Synced: 2025-04-12T21:11:58.788Z (15 days 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

[](https://circleci.com/gh/wantedly/subee/tree/master)
[](https://github.com/wantedly/subee/releases/latest)
[](https://godoc.org/github.com/wantedly/subee)
[](https://goreportcard.com/report/github.com/wantedly/subee)
[](./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
```