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

npm-ver

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

npm-ver

Command line tool for checking the version on an npm package

  • 0.1.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

NPMV Command-line Tool

npmv is a command-line tool I built to tell me the version number of a node module. It's a lot of work for me writing cat package.json everytime I want to check the version of a package. Especially when I want to find out the initial version of a package before I update the version number.

This tool also allows you to easily update package versions. It follows semver convention.

Installation

$ npm install -g npm-ver

Usage

$ npmv
//=> Version: v0.1.0

Options

Given a version number MAJOR.MINOR.PATCH, the following arguments:

MINOR|minor|min|m - Increments the MINOR part of the version number

MAJOR|major|maj|M - Increments the MAJOR part of the version number

PATCH|patch|p - Increments the PATCH part of the version number

Note: Incrementing minor automatically sets patch back to 0, and incrementing MAJOR sets MINOR and PATCH to 0

Examples

$ npmv
//=> Version: 0.1.0

$ npmv patch
//=> Version: 0.1.1

$ npmv p
//=> Version: 0.1.2

$ npmv m
//=> Version: 0.2.0

$ npmv M
//=> Version: 1.0.0

Keywords

FAQs

Package last updated on 20 Jun 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