|
|
|
|
|
by zarathustreal
731 days ago
|
|
> 1. Develop a system where you can turn codepaths on and off with a toggle. > All are good practices… I beg to differ on this point actually. It’s very difficult to get right and leads to subtle bugs (or even potential security vulnerabilities). It also pollutes the codebase with conditional statements that aren’t related to the business logic and makes it harder to read. Avoid feature flags. |
|