Are people using membrane with babashka? is possible?
I think it would require a special build, but it would be possible to compile membrane with native image. I think once project panama gets picked up by native image, then it could work more directly with a little effort.
Do you have a use case in mind?
I am considering rewriting a utility app of mine that I’d like to be able to startup without delay
Two options that could work • make membrane available to babashka through a pod • compile your app to its own binary directly via graalvm
That pod is interesting. I didn’t know you could provide something like Membrane that way. I couldn’t use javafx with Babashka, so assumed Membrane would trip on that.
I thought the idea was to compile a native image of membrane, but I may be wrong about that
The idea is to put all the necessary resources in the pod.
Yea, the sketch of the implementation is: 1. compile membrane to a standalone binary via native image 2. make the functionality available to babashka via pod. 3. ... 4. profit!