|
|
|
|
|
by em-bee
990 days ago
|
|
i don't find all-in-one frameworks attractive at all. the frontend/backend split is the easiest way to separate concerns, and ever since the first frontend frameworks i never wanted to go back to the old way of having them integrated. the pros of keeping them separate are that i can often reuse the backend for multiple applications/websites, or replace the frontend while keeping the backend, and inversely, i can replace the backend if needed without changing the frontend, and therefore without affecting the user experience. i find this flexibility invaluable. i also prefer to write frontend code in native javascript, although that depends on how well the transpiler/framework works in helping me find errors browser errors in the original code. using an all-in-one framework almost always means that i have to start from scatch for a new project because the reusability is much more limited. |
|