ORM is an acronym for object-relational mapping which is a way in which data types in one system can be represented in another using object-oriented programming. Common ORM solutions in modern server-side programming include NHibernate and Entity Framework.
WireBootstrap has an ORM solution built on top of it's base query features that creates TypeScript classes, interfaces, and enums from tables, views, and stored procedures inside a database, data service, or other data connector end-point. The resulting TypeScript classes allow CRUD operations such as reading, writing, deleting, and updating these objects directly from JavaScript.
Both the query and it's results are type-safe and type-aware. Also, while creating the query, the author can take advantage of intellisense as all the classes, enums, and interfaces represent objects in the database.
Intellisense in Visual Studio Code
For details on ORM support for a specific data connector, see the data connector documentation.