0.6.7 • Published 9 years ago

svn-simple-log-parser v0.6.7

Weekly downloads
35
License
-
Repository
github
Last release
9 years ago

svn-simple-log-parser NPM version

Get a clean json object from a (verbose) svn log stream.

Install as dependency

Install the module:

npm install svn-simple-log-parser --save

Parsing SVN Logs to JSON

var LogParser = require('svn-simple-log-parser');

var alfrescoSVN = new LogParser({
    repoUrl: 'https://svn.alfresco.com/repos/alfresco-open-mirror/alfresco/HEAD'
    user: 'ausername',
    password: 'apassword'
});

alfrescoSVN
    .parse({
        limit: 5,
        path: 'some/path',
        revision: '99999',
        from: '9999',
        to: '9999',
        verbose: true
    })
    .then( function (data) {
        console.log(data);
    })
    .catch( function (err) {
        console.log(err);
    })
;
0.6.7

9 years ago

0.6.6

9 years ago

0.6.5

9 years ago

0.6.4

9 years ago

0.6.3

9 years ago

0.6.2

9 years ago

0.6.0

9 years ago

0.5.0

9 years ago