Miroslav Bajtoš

Results 100 issues of Miroslav Bajtoš

GitHub docs: https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuration-options - Configure GH to create different sections, e.g. breaking changes, features, dependencies, everything else - Configure CI workflow to automatically add labels to pull requests based on...

Currently, our libp2p node reads the entire response into memory with a hard-coded limit of 10MB. On the JavaScript side, we provide API based on [async iterable](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#the_async_iterator_and_async_iterable_protocols) that's prepared for...

feature
libp2p

Currently, when dialling an outbound request-response session, our libp2p node accepts the entire request payload in a single buffer (`Uint8Array`). We should support more types and allow modules to stream...

feature
libp2p

Allow Zinnia modules to register handlers for inbound streams (requests). An example based on js-libp2p for inspiration: ```js node.handle('/my-proto/1.0', async ({ stream, connection }) => { try { // 1....

feature
modules:javascript
libp2p

Allow Zinnia nodes to participate in pub/sub networks. - Start with `Gossipsub`. We may want to add more pub/sub protocols later. https://github.com/libp2p/specs/tree/master/pubsub - Allow modules to publish new messages -...

feature
libp2p

Allow Zinnia modules to fetch data from other peers using the Bitswap protocol. _Details to be fleshed out later._ Open questions: - Do we want a block storage shared by...

feature
libp2p

Some of the work required to make this happen: - Tooling for building a Rust project for Station. This will likely involve Deno’s `wasmbuild` and possibly other build steps. A...

I have a crazy cool idea for making Station an attractive deployment target for PLN developers: implement `zinnia deploy` as a one-step command to deploy a new Station module or...

_Cross-posting https://github.com/filecoin-station/zinnia/pull/45#discussion_r1104624175_ I would love to enable coloured errors and coloured output from other Deno libs in general. However, we decided to hide all Deno APIs. I propose exposing a...

feature
modules:javascript

When we add a new API to Zinnia, there should be an automated way how to update our Rust API docs from code comments. Maybe Crates.io already takes care of...