Matthias
Matthias2mo ago

Rust GUI app: embedded deno runtime and custom JSX/TSX compiler

Hi! I am building a Rust GUI and I want to use embedded Deno to build a plugin system. I want to use something like either: - https://www.npmjs.com/package/react-reconciler - https://github.com/solidjs/solid/blob/main/packages/solid/universal/README.md But maybe there is a more Deno native way of achieving this? As I understand Deno has builtin JSX/TSX support, so maybe I can use it directly? PS: I am not planning on using the Deno rust crates directly and instead go through https://github.com/rscarson/rustyscript as it takes care of a lot of boilerplate.
npm
react-reconciler
React package for creating custom renderers.. Latest version: 0.29.2, last published: 4 months ago. Start using react-reconciler in your project by running npm i react-reconciler. There are 516 other projects in the npm registry using react-reconciler.
GitHub
solid/packages/solid/universal/README.md at main · solidjs/solid
A declarative, efficient, and flexible JavaScript library for building user interfaces. - solidjs/solid
GitHub
GitHub - rscarson/rustyscript: Effortless JS integration for rust
Effortless JS integration for rust . Contribute to rscarson/rustyscript development by creating an account on GitHub.
1 Reply
Matthias
Matthias2mo ago
In a perfect world I would love to avoid a build step altogether