
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@dvsa/cvs-feature-flags
Advanced tools
Feature flags for the Commercial Vehicle Services (CVS) system, published as a GitHub package.
.nvmrc for specific version)npm (If using n or nvm, this will be automatically managed)repo-security-scanner_<version>_Darwin_<architercture>.tar.gz and rename the executable inside the folder
to scanrepo - Add executable to path (using echo $PATH to find your path)npm install (or npm i)If wishing to add new top level directories to the output, then they must be included in the files array inside package.json as well as included in the clean:temp command.
When adding a new RDS migration object, the following conventions should be adhered to:
The object should be named <domain>DB e.g. "testFacilityDB", "defectDB", "testTypeDB"
A typical object should follow this structure:
enabled: A boolean indicating if the feature is enabled.<function>readDDB: A boolean indicating if reading from DynamoDB is enabled.<function>readAurora: A boolean indicating if reading from Aurora is enabled.<function>writeDDB: A boolean indicating if writing to DynamoDB is enabled.<function>writeAurora: A boolean indicating if writing to Aurora is enabled.(*Note: If Reads/Writes aren't required, the omit the flag)
Example
testFacilityDB: {
enabled: true,
// these flags control the /test-station/{+proxy}
testStationReadDDB: true,
testStationReadAurora: false,
// The only writes that occur in "test stations" are via the put, therefore no need for distinct flags
testStationWriteDDB: true,
testStationWriteAurora: false,
// these flags control the /activities/{+proxy}
activityReadDDB: true,
activityReadAurora: false,
activityWriteDDB: true
activityWriteAurora: false
}
FAQs
Common package to be used in CVS to manage feature flags
We found that @dvsa/cvs-feature-flags demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 18 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.