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

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

latest-semver Build Status

Get the latest stable semver version from an array of versions

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

const latestSemver = require('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

License

MIT © Sindre Sorhus

Keywords

FAQs

Package last updated on 12 May 2017

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