Is it possible to use npmjs packages in Kotlin/JS?...
# javascript
t
Is it possible to use npmjs packages in Kotlin/JS? If yes can you please share good documentation on how to call js apis from Kotlin code?
h
Yes, if you use gradle. In JS dependencies add
implementation(npm(<INSERT_NAME>))
See https://kotlinlang.org/docs/reference/js-project-setup.html#npm-dependencies
👍 1
t
thank you