does anyone knows if prisma can be run on the clie...
# orm-help
a
does anyone knows if prisma can be run on the client side? i would like to use this in a electron project and store the database locally
j
Well, in the getting started guide shows an example with sqlite so I think you could do something like that
r
Hey @Alan William Duarte 👋 Did you face any issues while implementing it with a SQLite database as mentioned above?
a
sorry for not answer, i don't check slack very often. I'm gonna try using sqlite as mentioned, thank you for your help!
just to answer here, i tried to run on web (because i'll use react and develop in browser to only then go to desktop) and it does not work on browsers... so i guess it no good for me since i can't test unless i use react build every single time i want to see the results
r
No it won't work on the web, just the Node side of things.
To communicate from Electron to React, you would need to use ipc then.
r
just seeing this, thanks for the IPC suggestion @Ryan! will have to try it
💯 1