I made this framework in an attempt to reduce complexity in large web applications.<p>It focus on data model first and CRUD access to this data.<p>You defines the access rules for you data, it's easy to keep track of it. Let's say you have an object UserBankDetails, it's obvious it should only be read/modified by its owner or admins: you can write that in simple terms. Now you have UserProfile, who contains public info like the biography and socials of the user, let's make it readable by guests (everybody).<p>Once you defined you data with its access rules you get an operational CRUD service that will cover 80% of your needs.<p>For the 20% remaining you can create commands, which follow a similar pattern of DTO/authorization.<p>Now another thing that increase complexity in large applications is the microservices pattern if implemented wrong. Eicrud handles that with a simple configuration: you can group your CRUD services into microservices and they will call each other over the network. If something goes wrong with you architecture you can easily go back to monolithic.<p>I really think unnecessary complexity is the root of all problems in web development, let me know what you think.