In my current projects, when I need to create some web system (a web MVC system, with so many CRUDs) I used to build it with:
Rails + ActiveRecord + Devise + Carrierwave + other libraries
or
Laravel + Eloquent ORM + other libraries
I started to study Javascript/ES6/Typescript and a lot of other things, and I want to create some "clone" of a system that I made previously in Rails or Laravel, and build it with Javascript.
What stack technology is equivalent/similar to Rails ecosystem or Laravel ecosystem (both are MVC web framework)? I hear about Meteor, Adonis, Express, but I am much confused about which of these is really a web MVC framework, and what is the main cases of uses of each one of them. I read many blog posts, and I am still confused about that.
My goal is to build a web MVC system, with many CRUDs.
What do you suggest?
Thanks!