Turtle ORM is a Node.js ORM that abstracts over MongoDB (via Mongoose) and MySQL (via Sequelize) using a simple, agnostic API. Current version 1.0.33 (no release cadence documented). Key differentiators: unified interface for both relational and non-relational databases, lightweight abstraction. However, the project appears unmaintained with no recent updates, limited documentation, and potential incompatibilities with modern Node.js versions.
npm install turtle-ormNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates how to define a model, create a database connection, and persist a document using Turtle ORM with MongoDB.
Consider migrating to Mongoose or Sequelize directly, or use a more modern ORM.
Use an older Node version or switch to a different ORM.
Always use Types.STRING instead of literal strings.
Run 'npm install turtle-orm' and verify import: const { Database } = require('turtle-orm');Use const { Database } = require('turtle-orm');Start MongoDB service or provide correct host/port.
No dependency data recorded yet.