This project was started on Oct 2014 when Scala.js was still an experimental project. I didn't expect Scala.js to come this far because there were a lot of Scala projects that were discontinued. Surprisingly, it's not just still alive but keeps growing.
I have to catch up what I missed for almost 2 years, and start looking for something cool to learn as usual.(Stay hungry, still foolish LoL)
I'm looking forward to using this: https://github.com/japgolly/scalajs-react/tree/topic/neo
The new version I plan in my head is to use React and Microservice.
This is a small application showing how cool Scala.js is. You can share code across platforms. For the shared code,
the Scala compiler compiles your Scala code to JVM byte code, and the ScalaJS compiler compiles the same Scala code to JavaScript.
Beside CSS and a few lines of HTML, almost all code in this project are type-safety including HTML (Thanks to scalatags). I made this project for learning purpose during my summer intern.
So, the code you will see in this project may look not good, but I hope you can learn something from it like I did.
I will try to keep it update-to-date to make sure that it will run with the recent version of Scala.js.
The sbt build file contains 3 modules
exampleServer
Play application (server side)exampleClient
Scala.js application (client side)exampleShared
Scala code that you want to share between the server and the client. This project would not exist if I didn't find this kick-ass example play-with-scalajs-example.
The project contains 4 simple examples:
Before running the application, you may need to do these steps:
Add the folowing to ~/.sbt/0.13/plugins/plugins.sbt
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "4.0.0")
$ sbt
> run
$ open http://localhost:9000
$ heroku login
$ heroku create
$ git push heroku master
$ heroku open
The application uses the sbt-play-scalajs sbt plugin and the play-scalajs-scripts library.
compile
simply triggers the Scala.js compilationrun
triggers the Scala.js fastOptJS command on page refresh~compile
, ~run
, continuous compilation is also availablestart
, stage
and dist
generate the optimised javascriptplayscalajs.html.scripts
selects the optimised javascript file when the application runs in prod mode (start
, stage
, dist
).emitSourceMaps in fullOptJS := true
in the Scala.js projects.