Ask HN: Resources for organizing large prisma projects

3 points by thinkingkong ↗ HN
We have a pretty big project right now based on Prisma. But the direct use of prisma everywhere has started to show its age. Theres no unified way to do validation, send a notification, other side-effects, etc. Prisma is still a little early on being able to augment the models. Computed fields barely work.

How are other folks organizing their projects to keep things sane?

1 comment

[ 3.4 ms ] story [ 13.0 ms ] thread
The correct way to do it is always pretty much the same.

Clean architecture / ports & adapters

You are supposed to put your database details behind interfaces