_can someone remind me there is a project that was...
# thinking-together
o
can someone remind me there is a project that was shared here, a canvas for JS workflows... ? found it - https://natto.dev/
👀 2
g
Very interesting. Thanks! I watched the video in the Welcome window. First impressions: 1. I wish it were 3D. Layers. 2. Multiple outputs would be nice. Output could be JSON, e.g.
console.log("Hello");
produces
{"stdout": "Hello"}
. This would allow "fan-out" - feed the same output to multiple receivers, letting each receiver pick and choose outputs that it wants to deal with. Our function-based mindset implies that there is but one output, hence, output doesn't need to be tagged, something which I find to be very restrictive.
âž• 1
... to further illustrate what I mean: a multi-headed transpiler on my github, produces outputs "{"python": "...", "javascript": "...", "wasm": "..."}" where the "..." contain emitted code in the respective languages. This idea was also used to build an experimental REPL](

https://www.youtube.com/watch?v=ZOsuC2Yx8D8â–¾

)