An open API service indexing awesome lists of open source software.

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

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
```