If you want to have an idea of what webhint
does and you
have an updated version of npm
(v5.2.0) and Node.js LTS (v8.9.2)
or later, x64 version recommended you can use the
following command:
npx hint https://example.com
Alternatively, you can install it globally with:
npm install -g --engine-strict hint
You can also install it as a devDependency
if you prefer not to
have it globally (which is the team's preferred option).
NOTE: If you run into any issues during the install process please check the troubleshoot section.
webhint
needs a configuration file to know what hint
s,
connector
s, etc. to use. By default it will look for a .hintrc
file in the current folder and then in the user's home directory.
If none is found, it will use a built-in default configuration and
warn the user about it.
The recommended way to create the configuration file is by running:
npm create hintrc
This command will start a wizard that will ask you a series of
questions (e.g.: do you want to use a predefined configuration
or prefer to
create one with the installed resource, what connector to use, formatter,
hints, etc.). Answer them and you will end up with something similar to the
following if you decided to use a predefined configuration:
{
"extends": ["configurationName"]
}
or the following if custom:
{
"connector": {
"name": "connectorName"
},
"formatters": ["formatterName"],
"hints": {
"hint1": "error",
"hint2": "warning",
"hint3": "off"
},
"hintsTimeout": 120000
...
}
Then you have to run the following command to scan a website:
hint https://example.com
Wait a few seconds and you will get something similar to the following:
It might take a few minutes to get some of the results. Some of the
hints (e.g.: SSL Labs
) can take a few minutes
to report the results.
To run webhint
you need a .hintrc
file. If you do not have one,
webhint
will use the web-recommended
set of hints.
This configuration will be equivalent to the following .hintrc
:
{
"extends": ["web-recommended"]
}
Now that you have webhint
up and running, it is time to learn a bit more
about the different pieces: