Skip to content

Commit 17e05af

Browse files
committed
Add usage instructions in the readme.
1 parent 0cf8c70 commit 17e05af

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@
55
It assumes that the target platform supports JavaScript's `WeakRef` and `FinalizationRegistry`, which are becoming standard in ECMAScript 2021.
66
Attempts to use `WeakReference` or `ReferenceQueue` will throw `ReferenceError`s if they are not supported.
77

8+
## Usage
9+
10+
Add the following dependency to your project settings:
11+
12+
```scala
13+
libraryDependencies += "org.scala-js" %%% "scalajs-weakreferences" % "1.0.0-SNAPSHOT"
14+
```
15+
16+
When using a `crossProject`, add the above in `.jsSettings(...)`.
17+
18+
You can then use `java.lang.ref.WeakReference` and `java.lang.ref.ReferenceQueue`.
19+
820
## License
921

1022
`scalajs-weakreferences` is distributed under the [Apache 2.0 license](./LICENSE.txt), like Scala.js itself.

0 commit comments

Comments
 (0)