0.1.8 • Published 10 years ago

product-version v0.1.8

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

Product-versions

use the commandLine with node

Get the OS X version of the current system. Example: 10.9.3

Get the NODE version of the current system. Example: v0.10.28

Install npm dependencies

$ npm install

mocha Test

$ npm test
or just type mocha anywhere
$ mocha
var assert = require('assert');

it('should return the current node version', function (cb) {
	require('./node.js')(function (err, version) {
		console.log('NODE:', version);
		assert(!err, err);
		assert(version.length > 0);
		cb();
	});
});

it('should return the current OSX version', function (cb) {
	require('./osx.js')(function (err, version) {
		console.log('OSX:', version);
		assert(!err, err);
		assert(version.length > 0);
		cb();
	});
});

CommandLine install --global

$ npm install -g product-version

just use the command: product-version

$ product-version --help

Example
  $ product-version
  v0.10.28
0.1.8

10 years ago

0.1.7

10 years ago

0.1.6

10 years ago

0.1.5

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago