assets | ||
project | ||
src/main | ||
.gitignore | ||
.scalafmt.conf | ||
build.sbt | ||
index.html | ||
README.md | ||
yarn.lock |
Scalajs-react independent demo
This is a demo of an independent scalajs sbt project consisting of only the frontend, that communicates with the backend from the play-slick-demo project - This is useful because configuring play to serve frontend files is a hassle, libray bundling mode refused to work for me in the integrated project whereas here it's trivial. Library bundling mode makes incremental compilation really fast( ~2 seconds ). This also speeds up incremental compilation of the backend project.
I have ported over all the code from my previous scalajs-react project, and this is the only I will be using primarily from now.
Other features are -
- HOCON configuration to make backend url conifgurable
- Scalajs-react with routing for SPA
- Effect wrappers (cats IO/monix Task) (TODO)
Usage
Steps -
- Clone this project
- Clone backend project
- Run the backend project
- Configure the url for the backend project in this project 's application.conf file
- Run this project with -
This starts the webpack dev server, the scalajs-bundler to bundle js dependencies, and js file continuous compilationsbt "fastOptJS::startWebpackDevServer; ~fastOptJS" shell
- Open
http://localhost:8080
to see it in action