Parley Hammon
unread,Apr 21, 2024, 4:41:54 PM4/21/24Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ArangoDB
I've built two ORMs for MySQL at my company, but at home I built a NodeJS OGM for ArangoDB for my personal projects. The two go together perfectly. AQL often returns lists of objects that can be dumped into the OGM, which maps everything perfectly so that there are never two of the same model and all relations are automatically connected using a global or scope session index. Using TypeScript, the IDE IntelliSense works perfectly. The data can be sent to the front end and dumped right back into the same OGM to run frontend operations. I built everything to reduce read time as much as possible by implementing a model memorization pattern that only recomputes when the underlying model memorizations change.
I'm reaching out because there is no dedicated OGM for ArangoDB, built in NodeJS, that I am aware of, and the OGM I built is so awesome in my opinion that it should be fully developed and used by others. How and where can I get the support to get this developed, tested, published, and documented?