OpenRecord alternatives and similar modules
Based on the "ODM / ORM" category.
Alternatively, view OpenRecord alternatives based on common mentions on social networks and blogs.
-
TypeORM
Data-Mapper ORM for TypeScript and JavaScript (ES7, ES6, ES5). Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, WebSQL databases. Works in Node.js and Browser. -
SheetJS js-xlsx
๐ SheetJS Community Edition -- Spreadsheet Parser and Writer -
Bookshelf
ORM for PostgreSQL, MySQL and SQLite3 in the style of Backbone.js. -
Objection.js
Lightweight ORM built on the SQL query builder Knex. -
Waterline
Datastore-agnostic tool that dramatically simplifies interaction with one or more databases. -
orm2
ORM for PostgreSQL, MariaDB, MySQL, Amazon Redshift, SQLite, MongoDB. -
MikroORM
TypeScript ORM based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, PostgreSQL, MySQL and SQLite. -
slonik
PostgreSQL client with strict types, detailed logging and assertions. -
Iridium
A high performance MongoDB ORM with support for promises, distributed caching, preprocessing, validation and plugins. -
firenze
Adapter-based ORM for MySQL, Memory, Redis, localStorage and more. -
@Sugoi\orm
Easy integration ORM kit, Includes validation, lifecycle hooks and decorators. -
@Sugoi\mongoDB
Easy integration MongoDB ORM kit. Includes validation, lifecycle hooks and decorators.
Scout APM - Leading-edge performance monitoring starting at $39/month
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of OpenRecord or a related project?
README
[OpenRecord](docs/logo.png)
OPENRECORD is an ActiveRecord inspired ORM for nodejs.
Currently it supports the following databases/datastores: SQLite3, MySQL, Postgres, Oracle, REST and LDAP (+ ActiveDirectory)
If you want to build a GraphQL endpoint for any of these databases, OPENRECORD has some built in features to support you!
As the name imply, it's open and very easy to extend. The whole package was build that way.
It has a lot of features, just take a look at the docs!
Usage example
Here is an example how to get a single post
from an existing sqlite3 file (by primary key).
const Store = require('openrecord/store/sqlite3')
const store = new Store({
file: './my-posts-db.sqlite3',
autoLoad: true
})
store.ready(async () => {
const post = await store.Model('Post').find(1)
console.log(post)
})
You don't have to define your model (optional) and you also don't have to define your model's attributes (optional).
Take a look at the docs to get started!
Contributing
If you've found a bug please report it via the issues page.
Before you submit a pull request, please make sure all tests still pass.
Sponsored by digitalbits.at