version-exists

0.0.4 • Public • Published

version-exists Build Status

Check if a version for a NPM modul exists.

Install

$ npm install --save version-exists

Usage

const versionExists = require('version-exists')
 
versionExists('args', '2.6.0').then(exists => console.log(exists)) //=> true
versionExists('args', '99.6.0').then(exists => console.log(exists)) //=> false
versionExists('argsfkgmnghjghjrihgjkrg', '2.6.0').then(exists => console.log(exists)) //=> Error > Cannot find argsfkgmnghjghjrihgjkrg in the NPM registry
 

API

versionExists(module, version)

Returns a promise for a boolean.

module

Type: String

Module to check.

version

Type: String

Version you want to check.

CLI

Install

$ npm install -g version-exists
❯ version-exists args 2.6.0
 
    Version 2.6.0 of the module args exist!
  
 
❯ version-exists args 99.6.0
 
    Version 99.6.0 of the module args does not exist!
  
 
❯ version-exists arsdgfghdhtdhtzjnrzjnrzjrjgs 2.6.0
 
    Error > Cannot find arsdgfghdhtdhtzjnrzjnrzjrjgs in the NPM registry
 

License

MIT © Marvin Mieth

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.4
    64
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.0.4
    64
  • 0.0.3
    32
  • 0.0.2
    0
  • 0.0.1
    0

Package Sidebar

Install

npm i version-exists

Weekly Downloads

82

Version

0.0.4

License

MIT

Last publish

Collaborators

  • ntwcklng