Heart Observatory
Heart Observatory is an analysis module of Heart, which analyses URLs with Mozilla Observatory.
Read more about the purpose, design and general installation of Heart.
Package manager
In the following sections, every examples are using NPM as package manager, but you can use any other you prefer: Yarn, pnpm...
Installation
-
Add the package to your project:
npm install @fabernovel/heart-observatory
-
Add Heart CLI if you have not already installed it
npm install @fabernovel/heart-cli
-
[Optional] Customize the Mozilla Observatory scanner
By default, the scanner used is the public one, but you can use your own: from a local codebase or with Docker.
In this case, you must provide the following env values:
OBSERVATORY_API_URL=
OBSERVATORY_ANALYZE_URL=
Usage
Analysis setup
The analysis setup must use the JSON format, and follow the Invoke assessment API Documentation.
Example:
{
"host": "heart.fabernovel.com",
"hidden": true
}
Example
Starting with this situation:
Using Heart CLI
You want to analyse the https://heart.fabernovel.com URL and check that the rating is at least 90
npx heart observatory --inline '{"host": "heart.fabernovel.com"}' --threshold 90