Socket
Socket
Sign inDemoInstall

compare-version

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

compare-version

Compare semver version numbers


Version published
Weekly downloads
356K
increased by1.41%
Maintainers
1
Weekly downloads
 
Created

What is compare-version?

The compare-version npm package is a simple utility for comparing semantic version numbers. It allows you to determine if one version is greater than, less than, or equal to another version, which is useful for version control and dependency management.

What are compare-version's main functionalities?

Compare Versions

This feature allows you to compare two version strings. The function returns -1 if the first version is less than the second, 1 if the first version is greater than the second, and 0 if they are equal.

const compareVersions = require('compare-versions');

console.log(compareVersions('1.0.0', '1.0.1')); // -1
console.log(compareVersions('1.0.1', '1.0.0')); // 1
console.log(compareVersions('1.0.0', '1.0.0')); // 0

Check if Version is Greater Than

This feature allows you to check if one version is greater than another using a comparison operator. It returns true if the condition is met, otherwise false.

const compareVersions = require('compare-versions');

console.log(compareVersions.compare('1.0.1', '1.0.0', '>')); // true
console.log(compareVersions.compare('1.0.0', '1.0.1', '>')); // false

Check if Version is Less Than

This feature allows you to check if one version is less than another using a comparison operator. It returns true if the condition is met, otherwise false.

const compareVersions = require('compare-versions');

console.log(compareVersions.compare('1.0.0', '1.0.1', '<')); // true
console.log(compareVersions.compare('1.0.1', '1.0.0', '<')); // false

Check if Version is Equal

This feature allows you to check if two versions are equal using a comparison operator. It returns true if the condition is met, otherwise false.

const compareVersions = require('compare-versions');

console.log(compareVersions.compare('1.0.0', '1.0.0', '=')); // true
console.log(compareVersions.compare('1.0.0', '1.0.1', '=')); // false

Other packages similar to compare-version

Keywords

FAQs

Package last updated on 23 Apr 2014

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc