Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 756 Bytes

File metadata and controls

40 lines (32 loc) · 756 Bytes

Quickstart Guide: ReproSpec

Get up and running with ReproSpec.

Prerequisites

  • Node.js >= 20.0.0
  • Docker Desktop or Docker engine

Setup

git clone https://github.com/reprospec/reprospec.git
cd reprospec
npm install

CLI Reference

Capture

Capture standard input/output logs and environment details:

node bin/reprospec.js capture -- node -e "console.log('test')"

Verify

Verify the bundle hashes match the manifest:

node bin/reprospec.js verify <bundle-path>

Replay

Replay the execution inside a network-disabled Docker container:

node bin/reprospec.js replay <bundle-path>

Doctor

Check health of local Docker and Node.js environments:

node bin/reprospec.js doctor