npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

webcoach

v7.0.0

Published

The coach gives you advice on building a better web page

Downloads

239

Readme

The coach

Build status Stars

Documentation | Changelog

The coach

The coach helps you find performance problems on your web page. You can think of the coach as a modern version of YSlow.

Does my page need coaching?

You know, it's hard to get everything right! Some of the previous performance best practices are now worst practices. The coach will detect that the page is accessed using HTTP/2, and adjust its advice accordingly.

Why we love the coach

Ten reasons why we love the coach:

  • The coach gives you advice on how to make your page faster. The coach aims to NEVER give you bad advice. Follow the advice and you will WIN!
  • The coach uses real browsers to see your page exactly like your users do.
  • Every advice has one or more unit-tests to make sure it's easy to change advice in the future.
  • The coach knows about more than just performance: Accessibility and web best practice are other things that the coach can help you with.
  • You can integrate the coach with your own web performance tool. It's easy: your tool only need to be able to run JavaScript in the browser and produce a HAR file. Or you can use the built-in functionality of the coach to run the browser.
  • The coach is open-source. The advice is public, you can check it and change it yourself. Help us make the coach even better!
  • The coach can combine knowledge from the DOM with HAR to give you super powerful advice.
  • The CLI output is pretty nice. You can configure how much you want to see. Use it as fast way to check the performance of your page.

How to use the coach

You can use the coach in a few different ways.

Docker

docker run sitespeedio/coach https://www.sitespeed.io

To build a docker image from source you will need to run one command

docker build -t my-custom-coach .

Standalone

You need Node.js LTS (you need to be on 12 or later). And you need Chrome and/or Firefox installed.

If you want to use Chrome (Chrome is default):

webcoach https://www.sitespeed.io

Try it with Firefox (needs Firefox 57 or later):

npm install webcoach -g
webcoach https://www.sitespeed.io --browser firefox

If you also want to show the offending assets/details and the description of the advice:

webcoach https://www.sitespeed.io --details --description

By default, the coach only tells you about advice where you don't get the score 100. You can change that. If you want to see all advice, you can do that too:

webcoach https://www.sitespeed.io --limit 101

If you want to test as a mobile device, that's possible too, by faking the user-agent.

webcoach https://www.sitespeed.io --mobile -b chrome

... but hey, I want to see the full JSON?

Yes, you can do that!

webcoach https://www.sitespeed.io -f json

This will get you the full JSON, the same as if you integrate the coach into your tool.

... but hey, I don't want any color in the table output?

That's possible as well!

webcoach https://www.sitespeed.io --noColor

Include in your own tool

The coach uses Browsertime to start the browser, execute the JavaScript and fetch the HAR file. You can use that functionality too inside your tool or you can use the raw scripts if you have your own browser implementation.

Use built in browser support

In the simplest version you use the default configuration (default DOM and HAR advice and using Firefox):

const api = require('webcoach');
const result = api.run('https://www.sitespeed.io');

The full API method:

// get the API
const api = require('webcoach');
const result = api.run(url, domScript, harScript, options);

Use the scripts

Checkout the coach-core module.

What does the coach do

The coach will give you advice on how to do your page better. You will also get a score between 0-100. If you get 100 the page is great, if you get 0 you can do much better!

How does it all work?

The coach tests your site in two steps:

  • Executes JavaScript in your browser and check for performance, accessibility, best practice and collect general info about your page.
  • Analyze the HAR file for your page together with relevant info from the DOM process.

You can run the different steps standalone but for the best result run them together.

What the coach does

Bonus

The coach knows more than just performance. She also knows about accessibility and web best practice.

Accessibility

Make sure your site is accessible and usable for everyone. You can read more about making the web accessible here.

Best practice

You want your page to follow best practices, right? Making sure your page is set up for search engines, have good URL structure and so on.

Privay

Make sure that your page respect user privacy.

General information

The world is complex. Some things are great to know but hard for the coach to give advice about.

The coach will then just tell you how the page is built and you can draw your own conclusions if something should be changed.

Timings

The coach has a clock and knows how to use it! You will get timing metrics and know if you are doing better or worse than the last run.

Developers guide

Checkout the developers guide to get a better feeling how the coach works.

Browser support

The coach is automatically tested in latest Chrome and Firefox. To get best results you need Chrome or Firefox 48 (or later) to be able to know if the server is using HTTP/2.

We hope that the coach works in other browsers but we cannot guarantee it right now.