hull is an approach to make building scuttlebut applications more easy by providing a single interface for everything™.
npm install @catamaran/hull shell
$ npm install --save @catamaran/hull
`
Then you need to create client and use it:
` typescript
const client = await Client.create();
const obs = client.message.fetchPublicFeed();
obs.subscribe(data => {
console.dir({
data,
});
});
``