I wrote an article about uses Kotlin to develop yo...
# javascript
m
I wrote an article about uses Kotlin to develop your Firebase Cloud Functions (NodeJS app based on ExpressJS). https://medium.com/@martial.maillot/firebase-with-kotlin-introduction-part-1-of-2-39541a3fa87b Thanks to the team for the help!
👍 5
a
Nice guide! I'd like to mention though that
wrapper
may not be the best word to describe external declarations.
external declarations by itself don't provide any changes to the API
And don't create any additional layer
Was it influenced by kotlin-wrappers repository?
In that case please note besides external declarations those libraries typically include some additional Kotlin code, which augments the API in some ways
Thus the word wrappers
But this is nitpicking really 😃
Thank you for writing the guide 😃
m
Thank you for your feedback! You're right, I should probably used
external + dynamic
and
external + JsModule
and keep the wrapper keyword for the last part (DSL). I'll update with these terms.