latest-version
Get the latest version of an npm package
Last updated 8 years ago by sindresorhus .
MIT · Repository · Bugs · Original npm
$ cnpm install latest-version 
SYNC missed versions from official npm registry.

latest-version Build Status

Get the latest version of an npm package

Fetches the version directly from the registry instead of depending on the massive npm module like the latest module does.

Install

$ npm install latest-version

Usage

const latestVersion = require('latest-version');

(async () => {
	console.log(await latestVersion('ava'));
	//=> '0.18.0'

	console.log(await latestVersion('@sindresorhus/df'));
	//=> '1.0.1'

	// Also works with semver ranges and dist-tags
	console.log(await latestVersion('npm', {version: 'latest-5'}));
	//=> '5.5.1'
})();

Related

License

MIT © Sindre Sorhus

Current Tags

  • 7.0.0                                ...           latest (3 years ago)

6 Versions

  • 7.0.0                                ...           3 years ago
  • 6.0.0                                ...           4 years ago
  • 2.0.0                                ...           10 years ago
  • 3.1.0                                ...           8 years ago
  • 1.0.1                                ...           10 years ago
  • 5.1.0                                ...           6 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (1)
Dev Dependencies (3)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org