interledger / interledger-rs

An easy-to-use, high-performance Interledger implementation written in Rust
http://interledger.rs
Other
201 stars 70 forks source link

User interface for sending, receiving, and managing a node #56

Open emschwartz opened 5 years ago

emschwartz commented 5 years ago

Possibly using a Rust framework like yew or percy. It should leverage the node API and be bundled along with it to make it easier to use.

Anyone interested in working on this? I probably won't get to it for a while

ekrenzke commented 5 years ago

I am interested in taking this issue, but I must admit that I have no experience with yew or percy. I would like to improve error handling throughout the existing crates before I commit to this though.

Do you think using Javascript would be more appropriate once the Rust API has stabilized, so more experienced designers could contribute to this project? For specs, should it mirror the CLI?

emschwartz commented 5 years ago

I don't feel that strongly about whether it should use a rust or JS framework. I think a (graphic) designer could work on the HTML and CSS independent of which category of frameworks we go with.

I'd want it to leverage all of the underlying API endpoints and enable you to:

tarcieri commented 5 years ago

As a huge fan of server-side Rust who also likes doing frontend stuff, my personal preference for this sort of thing is TypeScript

emschwartz commented 5 years ago

@tarcieri have you tried yew or percy? Just curious what the experience of using those is like. The idea of isomorphic web apps using Rust and wasm seems pretty awesome.

The framework supports multi-threading & concurrency out of the box. It uses Web Workers API to spawn actors (agents) in separate threads and uses a local scheduler attached to a thread for concurrent tasks.

That's pretty neat...

FWIW, if anything is being done in JS it would definitely be written in TypeScript.