Object-relational mapping framework specifically designed for Axway's API Builder runtime (formerly Appcelerator Arrow). Version 2.10.2 is the latest stable release. It provides Model, Instance, Collection, and Connector abstractions for building data-driven APIs. Key differentiators: tight integration with API Builder connectors, auto-generated models, and support for various actions like CRUD, query, and upsert.
npm install arrow-ormNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates creating a simple User model with fields, a memory connector, and saving an instance.
Switch to import { Model } from 'arrow-orm'Remove 'autogen' from model definitions.
Only set 'length' on fields of type String or Array.
Run 'npm install arrow-orm' and use import syntax: import { Model } from 'arrow-orm'Use named import: import { Connector } from 'arrow-orm'Call Model.extend() to define a model, not new Model()