Dev
#semver
#version
#npm
#development
Semantic Version
SemVer 2.0 compliant version string including optional pre-release and build metadata.
✓ Package version validation✓ CI/CD pipeline checks✓ Changelog automation
✓ Valid Examples
- 1.0.0
- 2.3.4-alpha.1
- 1.0.0+build.1
- 0.1.0-beta
✗ Invalid Examples
- 1.0
- v1.0.0
- 1.0.0.0
- latest
Usage & Integration
Validate Semantic Version natively in your backend or frontend without copying regex strings.
Node / Edge
import { validate } from '@regexto/validators';
validate('semver', '...');Python
from regexto_validators import validate
validate("semver", "...")Go
import "github.com/regex-to/validators-go"
valid, err := validators.Validate("semver", "...")PHP
use RegexTo\Validators\Validator;
Validator::validate('semver', '...');Rust
use regexto_validators::validate;
let is_valid = validate("semver", "...").unwrap();