Not looking for opinions here, but I'd like to know if any organization has released standards for naming JavaScript IndexedDb objects. I'm struggling to find anything beyond "unique" and "DOMString."
Not looking for opinions here, but I'd like to know if any organization has released standards for naming JavaScript IndexedDb objects. I'm struggling to find anything beyond "unique" and "DOMString."
There is no explicit naming conventions in the RFC defining the IndexedDB standard, but in this document is used the following:
librarybookstitleby_titleThis slightly contradicts the MDN usage and the Google usage
titleSince IndexedDB is a JS noSQL DB and so is MongoDB (which, on the contrary, has explicitly recommended naming conventions), you can also stick to these:
librarydbbooks, authorName_idIf I understand your question correctly, I have not encountered any rules pertaining to naming of objects.
As an observation, and not an opinion, attempting to formally name a generic bag of properties a certain way runs counter to the design trend in nosql dbs.