canonical / dqlite

Embeddable, replicated and fault-tolerant SQL engine.
https://dqlite.io
Other
3.77k stars 212 forks source link

Node.js bindings #633

Open LuKks opened 3 months ago

LuKks commented 3 months ago

A lot of developers would use or try out dqlite if there were Node.js bindings

I was considering to make basic bindings but the more I read include/dqlite.h the more it looks non-trivial for me as there are many methods and protocols to follow, so this leads me to end up using rqlite like many other devs probably. rqlite looks awesome tho, it's just normal to try out alternatives to choose wisely

Thanks! Cool lib anyway :)

LuKks commented 3 months ago

Otherwise, for the worst case that there will be no Node.js bindings: Any hints on how to properly implement bindings besides protocol docs? Like what to consider, what are the must-have or optionals, methods to watch out for that are easy to implement unsafely, etc