Socket
Socket
Sign inDemoInstall

fastv

Package Overview
Dependencies
0
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fastv

Get the version of a program quickly


Version published
Maintainers
1
Created

Readme

Source


Build Status

Get the version of a program quickly.

Installation

Install via npm:

npm install --save fastv

Install via git:

git clone https://github.com/juliandavidmr/fastv

Examples

var fastv = require("fastv");

fastv("vlc", function (err, version) {
    if(err) throw err;
    console.log(version);
    //=> 2.2.2
})
fastv("sublimetext", function (err, version) {
    if(err) throw err;
    console.log(version);
    //=> 3126
})
fastv("nodejs", function (err, version) {
    if(err) throw err;
    console.log(version);
    //=> 7.7.2
})
fastv("kernel", function (err, version) { // Only linux
    if(err) throw err;
    console.log(version);
    //=> 4.4.0-64
})

Programs available

  • Atom
  • Audacity
  • Cheese
  • Emacs
  • Firefox
  • Gedit
  • GoogleChrome
  • Gnomecalculator
  • Gimp
  • Git
  • Kazam
  • LibreOffice
  • Nemo
  • NodeJS
  • NPM
  • NCU
  • Shotwell
  • Openshot
  • OS
  • Plank
  • Python
  • Java
  • Javac
  • Kernel
  • Systemd
  • Transmission
  • Unity
  • Virtualbox
  • VisualCode
  • Vlc
  • Zenmap
  • Zip
  • Zsh
  • And more...

Contributors

I accept any pull request

License

MIT

Keywords

FAQs

Last updated on 18 Mar 2017

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