Reffy
Reffy is a Web spec crawler tool. It is notably used to update Webref every 6 hours.
The code features a generic crawler that can fetch Web specifications and generate machine-readable extracts out of them. Created extracts include lists of CSS properties, definitions, IDL, links and references contained in the specification.
The code also currently includes a set of individual tools to study extracts and create human-readable reports (such as the crawl report in Webref). Please note the on-going plan to move this part out of Reffy into a dedicated companion analysis tool (see issue #747).
How to use
Pre-requisites
To install Reffy, you need Node.js.
Installation
Reffy is available as an NPM package. To install the package globally, run:
npm install -g reffy`
This will install Reffy as a command-line interface tool.
The list of specs crawled by default evolves regularly. To make sure that you run the latest version, use:
npm update -g reffy
Launch Reffy
Reffy crawls requested specifications and runs a set of processing modules on the content fetched to create relevant extracts from each spec. Which specs get crawled, and which processing modules get run depend on how the crawler gets called. By default, the crawler crawls all specs defined in browser-specs and runs all core processing modules defined in the browserlib
folder.
Crawl results will either be returned to the console or saved in individual files in a report folder when the --output
parameter is set.
Examples of information that can be extracted from the specs:
- Generic information such as the title of the spec or the URL of the Editor's Draft. This information is typically copied over from browser-specs.
- The list of terms that the spec defines, in a format suitable for ingestion in cross-referencing tools such as ReSpec.
- The list of IDs, the list of headings and the list of links in the spec.
- The list of normative/informative references found in the spec.
- Extended information about WebIDL term definitions and references that the spec contains
- For CSS specs, the list of CSS properties, descriptors and value spaces that the spec defines.
The crawler can be fully parameterized to crawl a specific list of specs and run a custom set of processing modules on them. For example:
- To extract the raw IDL defined in Fetch, run:
reffy --spec fetch --module idl
- To retrieve the list of specs that the HTML spec references, run (noting that crawling the HTML spec takes some time due to it being a multipage spec):
reffy --spec html --module refs`
- To extract the list of CSS properties defined in CSS Flexible Box Layout Module Level 1, run:
reffy --spec css-flexbox-1 --module css
- To extract the list of terms defined in WAI ARIA 1.2, run:
reffy --spec wai-aria-1.2 --module dfns
- To run an hypothetical
extract-editors.mjs
processing module and create individual spec extracts with the result of the processing under an editors
folder for all specs in browser-specs, run:
reffy --output reports/test --module editors:extract-editors.mjs
You may add --terse
(or -t
) to the above commands to access the extracts directly.
Run reffy -h
for a complete list of options and usage details.
Some notes:
- The crawler may take a few minutes, depending on the number of specs it needs to crawl.
- The crawler uses a local cache for HTTP exchanges. It will create and fill a
.cache
subfolder in particular. - If you cloned the repo instead of installing Reffy globally, replace
reffy
width node reffy.js
in the above example to run Reffy.
Additional tools
Additional CLI tools in the src/cli
folder complete the main specs crawler.
WebIDL parser
The WebIDL parser takes the relative path to an IDL extract and generates a JSON structure that describes WebIDL term definitions and references that the spec contains. The parser uses WebIDL2 to parse the WebIDL content found in the spec. To run the WebIDL parser: node src/cli/parse-webidl.js [idlfile]
To create the WebIDL extract in the first place, you will need to run the idl
module in Reffy, as in:
reffy --spec fetch --module idl > fetch.idl
WebIDL names generator
The WebIDL names generator takes the results of a crawl as input and creates a report per referenceable IDL name, that details the complete parsed IDL structure that defines the name across all specs. To run the generator: node src/cli/generate-idlnames.js [crawl folder] [save folder]
Crawl results merger
The crawl results merger merges a new JSON crawl report into a reference one. This tool is typically useful to replace the crawl results of a given specification with the results of a new run of the crawler on that specification. To run the crawl results merger: node src/cli/merge-crawl-results.js [new crawl report] [reference crawl report] [crawl report to create]
Analysis tools
Note: Plan is to move analysis tools out of Reffy's codebase into a dedicated companion analysis tool (see issue #747).
Study tool
Reffy's report study tool takes the machine-readable report generated by the crawler, and creates a study report of potential anomalies found in the report. The study report can then easily be converted to a human-readable Markdown report. Reported potential anomalies are:
- specs that do not seem to reference any other spec normatively;
- specs that define WebIDL terms but do not normatively reference the WebIDL spec;
- specs that contain invalid WebIDL terms definitions;
- specs that use obsolete WebIDL constructs (e.g.
[]
instead of FrozenArray
); - specs that define WebIDL terms that are also defined in another spec;
- specs that use WebIDL terms defined in another spec without referencing that spec normatively;
- specs that use WebIDL terms for which the crawler could not find any definition in any of the specs it studied;
- specs that link to another spec but do not include a reference to that other spec;
- specs that link to another spec inconsistently in the body of the document and in the list of references (e.g. because the body of the document references the Editor's draft while the reference is to the latest published version).
For instance:
node src/cli/study-crawl.js reports/ed/crawl.json > reports/ed/study.json.
Markdown report generator
The markdown report generator produces a human-readable report in Markdown format out of the report returned by the study step, or directly out of the results of the crawling step. To run the generator:
node src/cli/generate-report.js reports/ed/study.json [perspec|dep]`
By default, the tool generates a report per anomaly, pass perspec
to create a report per specification and dep
to generate a dependencies report. You will probably want to redirect the output to a file, e.g. using node src/cli/generate-report.js reports/ed/study.json > reports/ed/index.md
.
The markdown report generator may also produce diff reports, e.g.:
node src/cli/generate-report.js reports/ed/study.json diff https://w3c.github.io/webref/ed/study.json
Spec checker
The spec checker takes the URL of a spec, a reference crawl report and the name of the study report to create as inputs. It crawls and studies the given spec against the reference crawl report. Essentially, it applies the crawler, the merger and the study tool in order, to produces the anomalies report for the given spec. Note the URL can check multiple specs at once, provided the URLs are passed as a comma-separated value list without spaces. To run the spec checker: node src/cli/check-specs.js [url] [reference crawl report] [study report to create]
For instance:
node src/cli/check-specs.js https://www.w3.org/TR/webstorage/ reports/ed/crawl.json reports/study-webstorage.json
Crawl and study all at once
Note: You will need to install Pandoc for HTML report generation to succeed.
To crawl all specs, generate a crawl report and an anomaly report, follow these steps:
- To produce a report using Editor's Drafts, run
npm run ed
. - To produce a report using latest published versions in
/TR/
, run npm run tr
.
These commands run the src/cli/crawl-and-study.js
script. Under the hoods, this script runs the following tools in turn:
- Crawler: crawls all specs with Reffy
- Analysis: Runs the study tool
- Markdown report generation: Runs the markdown report generator
- Conversion to HTML: Runs
pandoc
to prepare an HTML report with expandable sections out of the Takes the markdown report per specification. Typically runs pandoc reports/ed/index.md -f markdown -t html5 --section-divs -s --template report-template.html -o reports/ed/index.html
(where report.md
is the Markdown report) - Diff with latest published version of the crawl report: Compares a crawl analysis with the latest published crawl analysis and produce a human-readable diff in Markdown format with the markdown report generator
WebIDL terms explorer
See the related WebIDLPedia project and its repo.
Technical notes
Reffy should be able to parse most of the W3C/WHATWG specifications that define CSS and/or WebIDL terms (both published versions and Editor's Drafts), and more generally speaking specs authored with one of Bikeshed or ReSpec. Reffy can also parse certain IETF specs to some extent, and may work with other types of specs as well.
List of specs to crawl
Reffy crawls specs defined in w3c/browser-specs. If you believe a spec is missing, please check the Spec selection criteria and create an issue (or prepare a pull request) against the w3c/browser-specs repository.
Crawling a spec
Given some spec info, the crawler basically goes through the following steps:
- Load the URL through Puppeteer.
- If the document contains a "head" section that includes a link whose label looks like "single page", go back to step 2 and load the target of that link instead. This makes the crawler load the single page version of multi-page specifications such as HTML5.
- If the document is a multi-page spec without a "single page" version, load the individual subpage and add their content to the bottom of the first page to create a single page version.
- If the document uses ReSpec, let ReSpec finish its generation work.
- Run internal tools on the generated document to build the relevant information.
The crawler processes 4 specifications at a time. Network and parsing errors should be reported in the crawl results.
Config parameters
The crawler reads parameters from the config.json
file. Optional parameters:
cacheRefresh
: set this flag to never
to tell the crawler to use the cache entry for a URL directly, instead of sending a conditional HTTP request to check whether the entry is still valid. This parameter is typically useful when developing Reffy's code to work offline.resetCache
: set this flag to true
to tell the crawler to reset the contents of the local cache when it starts.
Contributing
Authors so far are François Daoust and Dominique Hazaël-Massieux.
Additional ideas, bugs and/or code contributions are most welcome. Create issues on GitHub as needed!
Licensing
The code is available under an MIT license.