❓ Does anyone have an example of a MondoDB integration with KotlinJs?
I'm building a NodeJS app with KotlinJs and I'd like to talk to a MongoDB database. So far it looks like I have the following options:
•
monko - seems like what I want but I couldn't find any setup instructions/examples
•
KMongo - it's using the native Java driver for MongoDB so wouldn't work for KotlinJs, unless I'm missing something
•
MongoDB Node Driver - I'd have to create my own bindings for it from Javascript which I'm hoping to avoid
•
MongoDB / Realm - doesn't support the
js
target yet unfortunately
• ...anything else?