https://github.com/dgf/go-fbp-x
Golang Flow Based Programming Experiment
https://github.com/dgf/go-fbp-x
Last synced: 6 months ago
JSON representation
Golang Flow Based Programming Experiment
- Host: GitHub
- URL: https://github.com/dgf/go-fbp-x
- Owner: dgf
- Created: 2024-03-17T14:02:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-08T22:16:55.000Z (about 2 years ago)
- Last Synced: 2025-01-23T05:44:46.059Z (over 1 year ago)
- Language: Go
- Homepage:
- Size: 80.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Golang Flow Based Programming Experiment
## Resources
Some helpful links about FBP and related topics
- [Flow-Based Programming (Chapters from the First Edition)](https://www.jpaulmorrison.com/fbp/index_old.shtml#book)
- [Tutorial on Flow-Based Programming (Filter File application)](https://github.com/jpaulm/fbp-tutorial-filter-file)
## Development
Run a process benchmark three times
```sh
go test -bench=. ./pkg/process/core/tick_test.go -benchmem -count=3
```
## Local Go Runs
Show last 'The Go Blog' posts
```sh
go run cmd/fbp/main.go run examples/golang-blog-posts.fbp
```
Build and Serve the WASM version locally
```sh
GOOS=js GOARCH=wasm go build -o web/static/main.wasm web/fbp/main.go
go run cmd/fbp/main.go serve
```