Socket
Socket
Sign inDemoInstall

a-wild-version-appears

Package Overview
Dependencies
6
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    a-wild-version-appears

sometimes versions happen and you want to alert your users


Version published
Maintainers
1
Install size
65.2 kB
Created

Readme

Source

a-wild-version-appears

sometimes you want to tell users of your CLI script that there's a new version available.

this lets you do that!

var version = require('a-wild-version-appears')
  , pkg = require('./package.json')

version(pkg, function(err, newer_available) {
  if(newer_available) {
    console.error('there\'s a newer version of '+pkg.name+' available! `npm install -g '+pkg.name+'` to upgrade.')
  }

  // keep on doing stuff.
})

API

version(package_json_contents, ready(err, newer_available)) -> undefined

returns whether or not there's a newer version available or not. if an err is encountered in the attempt it'll be passed as err to the ready callback.

license

MIT

Keywords

FAQs

Last updated on 16 Dec 2013

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc