Package Exports
- parse-semver
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 (parse-semver) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
parse-semver

Parse, normalize and validate given semver shorthand (e.g. gulp@v3.8.10) to object.
Install
npm i parse-semver --save
npm testAPI
For more use-cases see the tests
parseSemver
It returns object with
originalversion given, expanded semverrange, andversionwhich is valid semver version.
<shorthand>{String} the shorthand to parse, likedocks@v2.2.0return{Object} object with few properties
Example
var parseSemver = require('parse-semver')
parseSemver('docks@~3.4.5')
//=> {name: 'docks', original: '~3.4.5', range: '>=3.4.5 <3.5.0', version: '3.4.5'}
parseSemver('docks@v1.2.3')
//=> {name: 'docks', original: 'v1.2.3', range: '1.2.3', version: '1.2.3'}
parseSemver('docks@^2.2.2')
//=> {name: 'docks', original: '^2.2.2', range: '>=2.2.2 <3.0.0', version: '2.2.2'}
parseSemver('docks')
//=> {name: 'docks', original: '', range: '*', version: 'latest'}Related
- benz: Compose your control flow with absolute elegance. Support async/await, callbacks, thunks, generators,… more
- parse-git-log: Parse default
git logstyle to array of objects from git repository… more - parse-github-url: Parse a github URL into an object.
- parse-git-config: Parse
.git/configinto a JavaScript object. sync or async. - vez: Middleware composition at new level. Ultimate alternative to
ware,plugins,koa-composeand… more
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
But before doing anything, please read the CONTRIBUTING.md guidelines.