Ask HN: How to Assess the Quality of an App 1 points by m1sta_ 5y ago ↗ HN What are some good measures and/or frameworks to assess whether an application is of 'high quality'?
[–] mister_hn 5y ago ↗ SonarQube is one of the most famous quality checkers.Another good measure is the number of dependencies used: if too much, the quality might be poor (= poor maintainability).Is the application vulnerable? Check OWASP for this. [–] domano 5y ago ↗ In my experience Sonar optimization only gets you so far and especially does not discourage overly complex solutions.But you'll at least know that there is some kind of testing, linting etc going on.
[–] domano 5y ago ↗ In my experience Sonar optimization only gets you so far and especially does not discourage overly complex solutions.But you'll at least know that there is some kind of testing, linting etc going on.
2 comments
[ 2.7 ms ] story [ 13.1 ms ] threadAnother good measure is the number of dependencies used: if too much, the quality might be poor (= poor maintainability).
Is the application vulnerable? Check OWASP for this.
But you'll at least know that there is some kind of testing, linting etc going on.