Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fastv

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fastv

Get the version of a program quickly

  • 1.0.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
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

Package last updated on 18 Mar 2017

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc