Streams API
A simple example of using the Streams API.

Client
The app was bootstrapped with Create React App.
To start the app server run:
yarn start
The above runs the app in the development mode. Open http://localhost:3000 to view it in the browser.
To start the tests in interactive mode run:
yarn test
Server
To run the server run:
go run ./main.go
To run tests run:
go test .
To avoid caching during tests use:
go test -count=1 .
To run benchmark tests use the -bench
flag:
go test -bench=. .
To get coverage reports use the -cover
flag:
go test -coverprofile=coverage.out .
And to view the profile run:
go tool cover -html=coverage.out