Where are scala js dependencies (specified in %%%) located and how to look for them?

I want to see if a specific library has been compiled for scala JS.

I know that I can go to webjars and add it, but how can I find out if I can simply use the triple percent ( %%%) syntax to declare it as a dependency, for example:

libraryDependencies += "com.github.crocodilejs" %%% "frisbee" % "1.1.3"

For regular mailboxes, I can search for a mvnrepository.comsimilar one - what is there for scala JS dependency search, so I don’t need to create my own using webjars?

Also, is there something like http://definitelytyped.org/ for scalajs so that I can find existing facades for JS libraries?

+4
source share
2 answers

@gzm0 :

Scala.js http://search.maven.org/ _sjs, Scaladex, Scala. Scala.js-.

Scala.js - https://www.scala-js.org/libraries/

DefinitelyTyped, Maven Central, Scala.js Scala.js-. https://www.scala-js.org/libraries/facades.html, Scala.js.

+2

Scala.js . , , _sjs .

com.chuusai, shapeless .

Scala 2.11 shapeless_2.11. Scala 2.11 Scala.js 0.6.x shapeless_sjs0.6_2.11.

0

Source: https://habr.com/ru/post/1653427/


All Articles