0
Q:

ORM

ORM is the idea of being able to write queries like the one above, as well as
much more complicated ones, using the object-oriented paradigm of your
preferred programming language.

Here’s where the ORM comes in. When most people say “ORM” they are referring to
a library that implements this technique. For example, the above query would
now look something like this:

var orm = require('generic-orm-libarry');
var user = orm("users").where({ email: '[email protected]' });
4

New to Communities?

Join the community