Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Do you know any Yii like activerecord and modeling system in node js

i was looking for some good activerecord like library in node js, that is simiar to yii's active record and modeling pattern. you may know active record well let me show how active record and models works in yii.

Model Class (having all code to perform validations and bulk attribute assignments) then ActiveRecord and FormModel (use to make form on serve side that validate data assigned to it but most code is written in Model) are another classes extends Model Class.

so i am looking for something similar to this in node js, if you know anything please share or do you have any ideas how i can i achieve it easily without reinventing wheel.

like image 223
dev.meghraj Avatar asked Dec 06 '25 20:12

dev.meghraj


1 Answers

There are many alternatives out there, not many that give same range and depth that activeRecord does, the best i have seen is Tower which is most activeRecord like in its nature.

you should also see Sequelizejs

like image 55
Manquer Avatar answered Dec 08 '25 13:12

Manquer