ReRobe is a JavaScript ORM framework (v4.9.0) that provides object-relational mapping for Node.js applications. It ships with TypeScript types and focuses on simplifying database interactions through model definitions and query building. The framework follows an active release cadence with breaking changes in major versions. Differentiators include its lightweight footprint and emphasis on factory-based object creation, though it has a smaller community compared to alternatives like Sequelize or TypeORM.
npm install rerobe-js-ormNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to initialize the ORM, define a model with fields, sync the schema, and perform a basic insert.
Use import syntax or update to a CommonJS-compatible version (v3.x).
Use 'static get fields() { return { ... }; }' instead of 'static fields = { ... }'.Use 'orm.migrate({ force: true })' instead of 'orm.sync({ force: true })'.Use import syntax or set 'type': 'module' in package.json.
Replace 'static fields = {...}' with 'static get fields() { return {...}; }'.No dependency data recorded yet.