DEV Community

Discussion on: Announcing Tauri Beta - More efficient crossplatform apps with better features

Collapse
 
souksyp profile image
Souk Syp. • Edited

It empowers you to call into the app backend using a JS api, which gives you opt-in access to things like the filesystem

How do you add NeDB for a desktop app with Tauri? With Electron, I use IPC's channel to instruct CRUD commands to the main process.

Collapse
 
nothingismagick profile image
Daniel Thompson-Yvetot

If you have a rust interface to your NeDB, you can send a message from the WebView and CRUD to your heart's content. Otherwise, we allow you to ship sidecar binaries that you can communicate with using the RPC channels.