Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

latest-semver

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

latest-semver

Get the latest stable semver version from an array of versions

  • 4.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.4K
decreased by-25.9%
Maintainers
1
Weekly downloads
 
Created
Source

latest-semver

Get the latest stable semver version from an array of versions

This can be useful when you have an unsorted list of versions, like Git tags, and want to get the semantically latest version.

Install

npm install latest-semver

Usage

import latestSemver from 'latest-semver';

latestSemver([
	'v1.8.0-alpha.1',
	'v1.3.16',
	'v1.7.0',
	'v1.6.9'
]);
//=> '1.7.0'

latestSemver([
	'unicorn',
	'v1.8.0-alpha.1'
]);
//=> undefined

API

Non-semver versions and prereleases are ignored.

latestSemver(versions)

versions

Type: string[]

  • to-semver - Get an array of valid, sorted, and cleaned semver versions from an array of strings
  • semver-regex - Regular expression for matching semver versions
  • semver-diff - Get the diff type of two semver versions: 0.0.1 0.0.2patch
  • semver-truncate - Truncate a semver version: 1.2.31.2.0

Keywords

FAQs

Package last updated on 17 Oct 2021

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