0.13.0 • Published 2 years ago

@secbox/reporter v0.13.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@secbox/reporter

Provide an abstraction for generating test results as part of the particular test frameworks.

Setup

npm i -s @secbox/reporter

Usage

The package provides only one implementation of the Reporter that lets to get results to stdout, i.e. StdReporter:

import { Reporter, StdReporter } from '@secboox/reporter';

const reporter: Reporter = new StdReporter();

You just need to call the report method to send findings to stdout:

await reporter.report(scan);

reporter-sample

License

Copyright © 2022 NeuraLegion.

This project is licensed under the MIT License - see the LICENSE file for details.