
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
version_compare
Advanced tools
===============
simple tool to compare version strings
####Install npm
npm install version_compare --save
bower
bower install version_compare --save
####Node
vc = require('./version_compare')
vc.matches('1.0', '1.1') ==> false
vc.matches('1.0', '1.0') ==> true
vc.compare('1.0', '1.1') ==> -1
vc.gt('1.0', '1.1') ==> false
vc.gte('1.0', '1.1') ==> false
vc.lt('1.0', '1.1') ==> true
vc.lte('1.0', '1.1') ==> true
####Browser
<script src="bower_components/version_compare/version_compare.js"></script>
<script>
VersionCompare.matches('1.0', '1.1') ==> false
VersionCompare.matches('1.0', '1.0') ==> true
VersionCompare.compare('1.0', '1.1') ==> -1
VersionCompare.gt('1.0', '1.1') ==> false
VersionCompare.gte('1.0', '1.1') ==> false
VersionCompare.lt('1.0', '1.1') ==> true
VersionCompare.lte('1.0', '1.1') ==> true
</script>
###Credit: This repo is based off of source found here: [http://stackoverflow.com/questions/6832596/how-to-compare-software-version-number-using-js-only-number].
FAQs
Compare version strings.
We found that version_compare demonstrated a not healthy version release cadence and project activity because the last version was released 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

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.