This is a simple example application showing how you can integrate a Play project with a Scala.js project.
The application contains three directories:
serverPlay application (server side)clientScala.js application (client side)sharedScala code that you want to share between the server and the client
$ sbt
> run
$ open http://localhost:9000The application uses the sbt-play-scalajs sbt plugin and the play-scalajs-scripts library.
- Run your application like a regular Play app
compilesimply triggers the Scala.js compilationruntriggers the Scala.js fastOptJS command on page refresh~compile,~run, continuous compilation is also availablestart,stageanddistgenerate the optimised javascriptplayscalajs.html.scriptsselects the optimised javascript file when the application runs in prod mode (start,stage,dist).
- Source maps
- Open your browser dev tool to set breakpoints or to see the guilty line of code when an exception is thrown
- Source Maps is disabled in production by default to prevent your users from seeing the source files. But it can easily be enabled in production too by setting
emitSourceMaps in fullOptJS := truein the Scala.js projects.