Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
check-version-modules
Advanced tools
Check modules's version for the package.
$ npm install check-version-modules
does not support artifacts like "-beta" each "*" character will be understood like a "x"' here, "n" is a whatever number sample, like "1"
Does support following patterns:
(file: string, options?: iOptions) => Promise<boolean>
extract & compare datainterface iOptions {
"failAtMajor": boolean; // default: true => if no pattern, used for the returned boolean
"failAtMinor": boolean; // default: true => if no pattern, used for the returned boolean
"failAtPatch": boolean; // default: false => if no pattern, used for the returned boolean
"dev": boolean; // default: true => analyse dev deps too
"console": boolean; // default: true => print analyse's result in the terminal
}
--fail-at-major
=> failAtMajor = true--no-fail-at-major
=> failAtMajor = false--fail-at-minor
=> failAtMinor = true--no-fail-at-minor
=> failAtMinor = false--fail-at-patch
=> failAtPatch = true--no-fail-at-patch
=> failAtPatch = false--dev
=> dev = true--no-dev
=> dev = false--console
=> console = true--no-console
=> console = false--file
=> specify analysed file with next argument, if not set analyse the "package.json" in the working directory$ cd ./myProject/ && npx check-version-modules --file /etc/tests/package.json --fail-at-patch --no-dev
$ cd ./myProject/ && npx check-version-modules --no-console --no-fail-at-minor
const checker = require("check-version-modules");
checker("/etc/tests/package.json", {
"failAtPatch": true,
"dev": false
}).then((valid) => {
console.log(valid ? "ok": "old versions detected");
}).catch((err) => {
console.error(err);
});
import checker = require("check-version-modules");
checker("./package.json").then((valid) => {
console.log(valid ? "ok": "old versions detected");
}).catch((err) => {
console.error(err);
});
$ npm run-script tests
$ git clone git://github.com/Psychopoulet/check-version-modules.git
$ cd ./check-version-modules
$ npm install
$ npm run-script tests
FAQs
Check modules's version for the package.
The npm package check-version-modules receives a total of 2 weekly downloads. As such, check-version-modules popularity was classified as not popular.
We found that check-version-modules demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.