Live data from Hacker News

Ask HN: What do you use to test website performance?

news.ycombinator.com

1–5 of 5 posts

Ask HN: What do you use to test website performance?

#1
I've used webpagetest.org and gtmetrix.com in the past. It's been a while so I thought I'd ask HN in case there are more modern ways of checking for opportunities for performance improvement/adherence to "best practices".

I know they're imperfect but I also use these tools for getting a feel for the care that has gone into crafting a site.

Anyone have any resources for doing a quick "yep it looks OK" website checks?

Re: Ask HN: What do you use to test website performance?

#2
I use Lighthouse and Dareboost as a minimum, and a suite of site specific integration tests that run on Browserstack if it's anything important. I do all my development using eslint and flowtype where appropriate, and I write unit tests for the Javascript logic (usually in Jest as I do React these days). I also use Sonarqube to check the code. I've been tinkering with Stylelint to check and format my SCSS code.

Even with all that in place the QA/QC guy always seems to find problems.

Re: Ask HN: What do you use to test website performance?

#4
post #2

I use Lighthouse and Dareboost as a minimum, and a suite of site specific integration tests that run on Browserstack if it's anything important. I do all my development using eslint and flowtype where appropriate, and I write unit tests for the Javascript logic (usually in Jest as I do React these days). I also use Sonarqube to check the code. I've been tinkering with Stylelint to check and format my SCSS code. Even…

Thanks for all those tips and the insight. I use Lighthouse and Browserstack but hadn't heard of flowtype or Sonarqube...will check them out.