Web Fuzzing Commons (WFC): A set of standards and library support for facilitating fuzzing Web APIs.
- Node.js (version 18.x or higher)
- npm (comes with Node.js) or Yarn (version 1.22.x or higher)
Install dependencies using npm:
npm installOr using Yarn:
yarn installTo start the development server:
npm run dev
# or
yarn devThe development server will start at http://localhost:5173 by default.
To build the project for production:
npm run build
# or
yarn buildThe build artifacts will be stored in the ../target/generated-sources/webreport directory.
To preview the production build locally (uses existing build without rebuilding):
npm run preview
# or
yarn previewTo run the application in debug mode using static test files:
npm run debug
# or
yarn debugThis will build the project and copy static test files from tests/static directory to ../target/classes/webreport before previewing.
dev- Start development serverbuild- Build for productionpreview- Preview production buildlint- Run ESLintinstallAndBuild- Install dependencies, run tests and builddebug- Build the project and run in debug mode using static test files fromtests/staticdirectory