Have anyone here had any experience in using Scala.js for any production system or planing to use it in production ?
Scala.js – Does anyone use it production or plan to use it production ?
1–10 of 25 posts
Re: Scala.js – Does anyone use it production or plan to use it production ?
#2I have written a Chrome extension[1] using it which has a thousand or so users.
I use it to make in house visualizations / web based user interfaces for commodities trading. In this use case being able to have statically checked rpcs (via autowire + some modifications) and share domain objects / business logic between client and server really helps keep things DRY & statically checked.
Currently, as a hobby project, I am using it to work on a video game built on top of phaser.js.
As a long time Scala programmer I would strongly recommend it. It's amazing being able to re-use all your domain objects between server and client, and get great performance on both sides.
Re: Scala.js – Does anyone use it production or plan to use it production ?
#3I have used it in closed-source production and its awesome!
Re: Scala.js – Does anyone use it production or plan to use it production ?
#4By now, I'm at the point where adding a whole new API and making use of it in the client can be done in minutes -- having Scala end-to-end is a huge win. And having static type checking for the client code means that there are far fewer bugs, so coding the client itself is much quicker and less frustrating. Really, it's the first time in 20+ years that I've enjoyed web programming.
That's just a tiny startup (https://www.querki.net/help/#What-is-Querki -- note that everything you see there is Scala.js), but I don't think it would have been possible without SJS...
Re: Scala.js – Does anyone use it production or plan to use it production ?
#5I have used it for several projects. I have written a Chrome extension[1] using it which has a thousand or so users. I use it to make in house visualizations / web based user interfaces for commodities trading. In this use case being able to have statically checked rpcs (via autowire + some modifications) and share domain objects / business logic between client and server really helps keep things DRY & statically che…
Re: Scala.js – Does anyone use it production or plan to use it production ?
#6I have used it for several projects. I have written a Chrome extension[1] using it which has a thousand or so users. I use it to make in house visualizations / web based user interfaces for commodities trading. In this use case being able to have statically checked rpcs (via autowire + some modifications) and share domain objects / business logic between client and server really helps keep things DRY & statically che…
Do you use any packages as Angular or Polymer together with Scala.js ?
Re: Scala.js – Does anyone use it production or plan to use it production ?
#7I'm currently using Angular, React and Moment.js on the scala side, so I can confirm JS library interop is possible.
Re: Scala.js – Does anyone use it production or plan to use it production ?
#8My product is completely built on it. Took some ramp-up and rearchitecture time (in particular, SJS is better for a single-page-application than lots of little webpages), but it has enormously increased my productivity since then. By now, I'm at the point where adding a whole new API and making use of it in the client can be done in minutes -- having Scala end-to-end is a huge win. And having static type checking for…
Re: Scala.js – Does anyone use it production or plan to use it production ?
#9I'm in the process of introducing Scala.js to the front-end of seventh sense. My navigation and several display components are in production already, with more coming all the time. Once you understand the interop rules and get a unified toolchain in place, it "just works", and as others have said, having access to scala typing and the same, typed, codebase on both front-end and back-end is awesome. I'm currently usin…