I am creating an app that will have some data visulization features. I have no experience in tauri or web dev, so I want to know whether it is possible to render D3.js, plotty, etc. and use them as a part of the tauri frontend
The Tauri frontend is a full web view and should be capable of rendering anything your native browser can. You should just be able to add those libraries to your bundle and use them. Usually that means just adding a dependency to your package.json and importing the library, though that depends on your frontend stack of course.
The Tauri frontend is a full web view and should be capable of rendering anything your native browser can. You should just be able to add those libraries to your bundle and use them. Usually that means just adding a dependency to your
package.jsonand importing the library, though that depends on your frontend stack of course.