Elektrine lite

← Feed

@p2panda@autonomous.zone

Post #792535

2026-03-26 18:25 UTC

We've been busy implementing p2panda's high-level Node API! It's an opiniated - but also much easier to use, out-of-the box p2panda stack: the thing which orchestrates all of our individual modules without all the footguns you might encounter when trying to assemble them yourself. Example: let node = p2panda::spawn().await?; let (tx, rx) = node.stream(topic).await?; This does networking, discovery, bootstrap, sync, event streaming, ordering, storage and more! Let us tell you more about it:

Replies (1)

  • @p2panda@autonomous.zone 2026-03-26 18:25

    p2panda is designed with a clear separation of the "event delivery" and "event processing" layers. p2panda applications should not worry about _where_ their messages come from but only how they are processed. We make sure that other nodes who are interested in the same topic are confidentially discovered, to sync up on all missed messages, to deliver them to the processing layer. This gives them flexibility to run on top of any infrastructure. We also call this a "Walkaway Stack".

    Open ##2533359