Modeling complex JavaScript object collections in memory
A deep dive into a fairly flexible implementation, inspired by Rails' ActiveRecord, for modeling JavaScript object collections in memory.
Inspired by ActiveRecord, this collection will guide you through the process of modeling complex objects in JavaScript, from in-memory collections to queries, relationships, serialization, and more.
A deep dive into a fairly flexible implementation, inspired by Rails' ActiveRecord, for modeling JavaScript object collections in memory.
Continuing on the journey to implement an ActiveRecord-like pattern in JavaScript with object attributes and relationships.
In the third installment of implementing an ActiveRecord-like pattern in JavaScript, we'll model and optimize object scoping.
In the fourth part of the series, we will look at how to serialize complex JavaScript objects.
Expanding even further upon our ActiveRecord-inspired project, we'll figure out how to create factories that produce complex objects.
Returning to the models and records part of the implementation, this time around we'll explore how to add constraints to individual fields.
In this installment, we'll create a custom object inspect utility to help us debug our complex objects in the console.
In this installment of the ActiveRecord-like JavaScript implementation, we will revisit modeling relationships between objects.