Christian Brunbjerg
Christian Brunbjerg

Reputation: 9

Firebase functions with Julia

I have developed a front-end for a simulation tool that I have written in Julia. I have decided to use Google Firebase to host the website, but I find it difficult to integrate the Julia code inside of it. On my own PC I created a WebSocket between the Julia and the JS front-end, but this approach does not work with Firebase in its the current implementation.

Does anyone here know a good approach to integrating different languages on Firebase? I thought about using Firebase Functions, but it seems like calling Julia from there is not possible? Right now I am thinking of moving away from Firebase and simply creating a server from scratch to solve the problem. Any advice would be very welcome.

Kind regards,

Upvotes: 0

Views: 56

Answers (1)

Frank van Puffelen
Frank van Puffelen

Reputation: 598728

It's not immediately clear from your question which part of Firebase you use, but most Firebase services has a REST API which should be callable from pretty much any platform.

Upvotes: 0

Related Questions