@ietf-tools/idnits
v3.0.0-alpha.70
Published
Library / CLI to inspect Internet-Draft documents for a variety of conditions to conform with IETF policies.
Readme
CLI / Library to inspect Internet-Draft documents for a variety of conditions to conform with IETF policies.
⚠️ This branch is for the new JS-based idnits3. For the older shell-based idnits2, view the v2 branch instead.
Installation
- Install Node.js 20.x or later
- Install idnits using one of the methods:
Globally (recommended)
npm install -g @ietf-tools/idnitsIn an existing npm project
npm install @ietf-tools/idnitsWithout Installation
npx @ietf-tools/idnits <args>[!TIP] This is only useful for quickly running the command once without installing. If you plan on using this tool regularly, you should install it globally instead.
CLI Usage
idnits [args] <file path|url>| Arguments | Alias | Description | Default |
|---|---|---|---|
| --filter | -f | Filter output to only certain severity types. Can be declared multiple times to filter multiple severity types.Accepted values: errors, warnings, comments | |
| --mode | -m | Validation mode, must be either normal, forgive-checklist or submissionAccepted shorthands: norm, n, f-c, fc, f, sub, s | normal |
| --no-color | | Disable colors in pretty output.No effect in other output formats. | |
| --no-progress | | Disable progress messages / animations in pretty output.No effect in other output formats. | |
| --offline | | Disable validations that require an internet connection. | |
| --output | -o | Output format, must be either pretty, simple, json or count | pretty |
| --solarized | | Use alternate colors for a solarized light theme terminal.Only used with the pretty output format. | |
| --year | -y | Expect the given year in the boilerplate | |
| --help | -h | Print the help text and exit | |
| --version | | Print the version and exit | |
Library Usage
[!NOTE] The library documentation is a work in progress.
Ensure you installed the library locally to your project (npm install @ietf-tools/idnits).
Simple Validation Run
Use the checkNits() method to quickly run all the validation checks and return a results array.
import { checkNits } from '@ietf-tools/idnits'
const documentRawBuffer = ...
const documentFileName = 'draft-ietf-abcd-efgh-01.xml'
const results = await checkNits(documentRawBuffer, documentFileName)Task Runner
You can implement your own task runner to have full control over how the validations are executed. The getAllValidations() method returns a list of all validations that should be run.
import { getAllValidations } from '@ietf-tools/idnits'
const ext = filename.endsWith('.xml') ? 'xml' : 'txt'
const result = []
const ctx = {
raw,
filename,
options: {
allowedDomains,
mode,
offline,
year
}
}
const validations = getAllValidations(ext)
for (const valGroup of validations) {
// Skip validation group if condition is not met
if (valGroup.condition && !valGroup.condition(ctx)) {
continue
}
// Run validations in parallel when possible
if (valGroup.concurrent) {
const valGroupResult = await Promise.all(valGroup.tasks.map(valTask => valTask.task(ctx)))
for (const taskResult of valGroupResult) {
if (Array.isArray(taskResult)) {
result.push(...taskResult)
}
}
} else {
// Run validations sequentially otherwise
for (const valTask of valGroup.tasks) {
const taskResult = await valTask.task(ctx)
if (!valTask.isVoid && Array.isArray(taskResult)) {
result.push(...taskResult)
}
}
}
}
return resultTests
Tests are made using the Vitest library and are located under the tests directory.
You can run the suite of tests using:
# Make sure you installed dependencies first:
npm install
# Run the tests
npm testCode coverage is expected to reach 100%. Ensure this is still the case when making edits / adding new functionality.
Development
- Clone the project
- Run
npm install - Run the CLI: (replacing
<args>and<file path|url>with the desired flags + file path)node cli.js <args> <file path|url>
