February 2018
Intermediate to advanced
552 pages
13h 46m
English
In this section, we will develop and discuss our Reactive Chat System using Play/AkkaStreams/Scala Technology Stack.
Perform the following steps to explore Akka Streams Dynamic components:
Project Name : play-akka-streams-scala-chatroom-app
build.sbt:
name := "play-akka-streams-scala-chatroom-app" scalaVersion := "2.12.4" val akkaVersion = "2.5.9" lazy val root = (project in file(".")).enablePlugins(PlayScala) crossScalaVersions := Seq("2.11.12", "2.12.4") libraryDependencies += guice libraryDependencies += "org.webjars" %% "webjars-play" % "2.6.1" libraryDependencies += "org.webjars" ...