github-module-version

0.0.12 • Public • Published

github-module-version Build Status

For a Github repo, get the most recent commit that changed the properties.json file.

Returns the commit information, and the entire properties.json object.

using

Install it the normal way:

npm install github-module-version

You can use it with a callback:

var moduleVersion = require('github-module-version')
var module = {
    user: 'github-user',
    repo: 'repo-name'
}
moduleVersion(module, function(err, data) {
    // data object
})

Or you can use it as a promise:

var moduleVersion = require('github-module-version')
var module = {
    user: 'github-user',
    repo: 'repo-name'
}
moduleVersion(module).then(function(data) {
    // data object
}, function(err) {
    // err object
})

The data object is an object with the commit and the properties.json object, e.g.:

var data = {
    commit: {
        sha: // hash of commit
    },
    properties: {
        version: // version at the commit
    }
}

license

VOL

Readme

Keywords

Package Sidebar

Install

npm i github-module-version

Weekly Downloads

7

Version

0.0.12

License

VOL

Last publish

Collaborators

  • saibotsivad