Package Exports
- semver-regex
- semver-regex/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (semver-regex) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
semver-regex 
Regular expression for matching semver versions
Install
$ npm install semver-regexUsage
const semverRegex = require('semver-regex');
semverRegex().test('v1.0.0');
//=> true
semverRegex().test('1.2.3-alpha.10.beta.0+build.unicorn.rainbow');
//=> true
semverRegex().exec('unicorn 1.0.0 rainbow')[0];
//=> '1.0.0'
'unicorn 1.0.0 and rainbow 2.1.3'.match(semverRegex());
//=> ['1.0.0', '2.1.3']Note: For versions coming from user-input, it's up to you to truncate the string to a sensible length to prevent abuse. For example, 100 length.
Related
- find-versions - Find semver versions in a string
- latest-semver - Get the latest stable semver version from an array of versions
- to-semver - Get an array of valid, sorted, and cleaned semver versions from an array of strings
- semver-diff - Get the diff type of two semver versions:
0.0.10.0.2→patch - semver-truncate - Truncate a semver version:
1.2.3→1.2.0