-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extract Scala-JS-compatible zio-actors-api module #299
base: master
Are you sure you want to change the base?
Conversation
The |
@mtsokol I'm running into quite a bit of trouble in |
@nightscape Hi! 🙂 Thanks for a mention, I can take a look later next week if you don't mind. |
I'm just trying to get a subset (a local-only version) of zio-actors to run in the browser.
I'm trying to change the API as little as possible, let's see how far that works.
Currently, I've extracted all the stuff that doesn't require a JVM (transitively via
zio-config
andzio-nio
) into a newapi
directory that gets cross-compiled.One open question is how to do serialization. Depending on whether one envisions
ActorSystem
s between the browser and the JVM interacting, it would have to be a serialization library/format that works on both platforms.I assume you have already considered this, so I'd be happy for any input.