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?
source
share