fedesilva / scala-js-java-time

Scala.js implementation for java.time in JDK8

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

scalajs-java-time

Build Status Scala.js

scalajs-java-time is a BSD-licensed reimplementation of the java.time API of JDK8 for Scala.js. It enables this API in Scala.js projects.

Usage

Simply add the following line to your sbt settings:

libraryDependencies += "org.scala-js" %%% "scalajs-java-time" % "0.1.0"

If you have a crossProject, the setting must be used only in the JS part:

lazy val myCross = crossProject.
  ...
  jsSettings.(
    libraryDependencies += "org.scala-js" %%% "scalajs-java-time" % "0.1.0"
  )

Requirement: you must use a host JDK8 to build your project, i.e., to launch sbt. scalajs-java-time does not work on earlier JDKs.

Work in Progress / linking errors

This library is a work in progress. There are still many classes and methods that have not been implemented yet. If you use any of those, you will get linking errors.

Feel free to contribute to extend the set of supported classes and methods!

License

scalajs-java-time is distributed under the BSD 3-Clause license.

Contributing

Follow the contributing guide.

About

Scala.js implementation for java.time in JDK8

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Scala 100.0%