|
|
|
|
|
by ReflectedImage
786 days ago
|
|
It's not really true that type safety is useful for large projects. It's generally better to do proper micro-services. Type safety is the inferior way of doing it where you get hit with a double whammy of long compile times and extreme code verbosity. |
|
Network communications are the most tedious and annoying part of programming for me because of the validation of the request body and checking that it has all the fields needed.
Microservices only increase the amount of documentation needed. I would prefer to lessen the amount of documentation by letting the compiler/code do the work instead.