top | item 31909010

(no title)

chazhaz | 3 years ago

The JS ecosystem seems a lot more hesitant to bundle features into frameworks à la Rails/Laravel & friends, but Redwood.js sounds like what you're looking for. The ORM it uses is Prisma, which works really well on its own too.

https://redwoodjs.com https://www.prisma.io

discuss

order

lewantmontreal|3 years ago

Prisma is a nice product but I wouldn’t use it in production yet. It is prone to race conditions as it does not use native upserts, opting instead for Rails-style check-if-exists-insert-if-doesnt.

shafyy|3 years ago

Redwood and Prisma look nice! But what I like more is a focus on serverside rendering and as few build steps as possible, like Fresh. I also find Deno more appealing than Node (simplicity).

But yes, I guess if I would need to pick a more mature framework with JS, Redwood would be the way to go.