From the root of your project:
npm install --save @0k/doctestOr better, as @0k/doctest is still in early release,
npm install --save @0k/doctest#masterTo be sure to get the latest version, relaunch this last command whenever you want to update.
This package is using npm to track dependendies, so you can install them
with:
npm installAs this package is written in typescript. You can transpile to
javascript and transpile on file change with:
## Compile and watch
npx tspc -wTests are managed through vitest
## Run test once
npm run testNote that you can also use npx vitest command to launch tests in
watch mode.