|
|
|
|
|
by chakkepolja
1612 days ago
|
|
Here's my totally unstructured thoughts on it. Most programming being done is either DB backed CRUD APIs & UIs. For the first part, having to write a REST API is mostly repetititve, not same but similar logic. Some well designed ORMs & automatic wrapper generators get you quite far (compared to hand writing SQL), but the mismatch is still there. The best backend language will natively work with database. I haven't worked with many technologies in this, but spring data jpa looks like a good initial step to look at. Second one is UI. Reactivity is the norm but languages are still mostly procedural. Look at all the state management confusion in eg. Flutter. Svelte is a quite big step here. I think UI language of future should have reactivity built in. |
|