node-svnsync

Node helper library for keeping a remove subversion library syncronized with a local folder.

Usage no npm install needed!

<script type="module">
  import nodeSvnsync from 'https://cdn.skypack.dev/node-svnsync';
</script>

README

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   npm version

npm install node-svnsync

Simple Usage

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!");
});