# collect-v8-coverageUse this module to start and stop the V8 inspector manually and collect precise coverage.```jsconst{CoverageInstrumenter}=require('collect-v8-coverage');constinstrumenter=newCoverageInstrumenter();awaitinstrumenter.startInstrumenting();// require some modules, run some codeconstcoverage=awaitinstrumenter.stopInstrumenting();```