TextRunner works on all platforms supported by Node.JS, including macOS, Windows, and Linux. To get started:
-
install Node.JS version 22 or newer
-
in the terminal, cd into the folder in which you want to use TextRunner
-
Text-Runner is a Node.js application, so you need to have a package.json file. If you don't know what that is, create one with this content:
{ "name": "documentation-tests", "type": "module", "private": true }
-
install TextRunner:
npm install -D text-runner
-
make sure it works by running:
text-runner help
This gives you an out-of-the-box installation of TextRunner. It checks for dead links and images.
You can configure TextRunner via command-line options or a configuration file.
To scaffold a configuration file, open a terminal, go to the folder where you want to configure TextRunner, and run:
text-runner setup
This creates a configuration file called text-runner.jsonc with this content:
By default Text-Runner uses a file text-runner.jsonc
as the configuration
file. You can tell it to use another configuration file with the --config
command-line switch:
text-runner --config=my-config.jsonc
Read more about:
- the built-in actions
- writing your own user-defined actions
- installing TextRunner
Read more about:
- using some of the built-in actions
- writing your own user-defined actions