node-svnsync
Version:
Node helper library for keeping a remove subversion library syncronized with a local folder.
20 lines (18 loc) • 578 B
Markdown
Node SVNSync
===================
Helper library for syncronizing a remote subversion repository with a local folder, being sure to only pull it down when it does not exist locally.
###Installation [](http://badge.fury.io/js/node-svnsync)
```sh
npm install node-svnsync
```
###Simple Usage
```javascript
var svnsync = require('node-svnsync');
svnsync({
'dest': './out',
'repo': 'https://svn.bla.com/technology/GATEWAY_JS/tags/1.0.5',
'localfolder': 'code'
}, function(err) {
console.log("done!");
});
```