AngularJS ORM providing model-based data management with relationships, validations, and hooks. Version 3.0.0-beta.0.0.8 is a pre-release with breaking changes from earlier betas. Release cadence is irregular. Key differentiators include lightweight integration with AngularJS's digest cycle and promise-based API. Not actively maintained; alternatives like restangular or plain $http are recommended.
npm install active-angularNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates defining a model with schema, saving a record with AngularJS $http.
Use restangular, ngResource, or plain $http instead.
Refer to the beta changelog for migration.
For Angular 2+, use other ORMs like @angular/common/http or angular2-orm.
Set Model.api = $http in your run block.
Run npm install active-angular@3.0.0-beta.0.0.8 and ensure bundler/loader paths are correct.
import { Model } from 'active-angular';In your AngularJS module's run block: Model.api = $http;