the infinite canvas that does everything and makes all of computing interoperable. find the live copy at: https://neospacecanvas.com/
the simple stuff (canvas and basic upload and draw functions are done in JS) the memorey management, rendering of complex screen objects and render culling Rust WASM.
two ways to get this to run at localhost:8080
...
Right now the WASM features are experimental so you can just run the HTML/JS
npm run build
npm start
To build and run the Docker container:
docker build -t neo-space-canvas .
docker run -p 8080:80 neo-space-canvas
Build the WASM module:
cd wasm && wasm-pack build --target web