Zoeken…


Invoering

Scala.js is een poort van Scala die compileert naar JavaScript , die uiteindelijk buiten de JVM . Het heeft voordelen als krachtig typen, code-optimalisatie tijdens het compileren, volledige interoperabiliteit met JavaScript-bibliotheken.

console.log in Scala.js

println("Hello Scala.js") // In ES6: console.log("Hello Scala.js");

Vetpijl functies

val lastNames = people.map(p => p.lastName)
// Or shorter:
val lastNames = people.map(_.lastName)

Simple Class

class Person(val firstName: String, val lastName: String) {
  def fullName(): String =
    s"$firstName $lastName"
}

collecties

val personMap = Map(
  10 -> new Person("Roger", "Moore"),
  20 -> new Person("James", "Bond")
)
val names = for {
  (key, person) <- personMap
  if key > 15
} yield s"$key = ${person.firstName}"

DOM manipuleren

import org.scalajs.dom
import dom.document

def appendP(target: dom.Node, text: String) = {
  val pNode = document.createElement("p")
  val textNode = document.createTextNode(text)
  pNode.appendChild(textNode)
  target.appendChild(pNode)
}

Gebruik met SBT

Sbt-afhankelijkheid

libraryDependencies += "org.scala-js" %%% "scalajs-dom" % "0.9.1" // (Triple %%%)

Rennen

sbt run

Hardlopen met continue compilatie:

sbt ~run

Compileer naar één JavaScript-bestand:

sbt fastOptJS


Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow