npm install -g node.svn
var SVN = require('svn');
var svn = new SVN();
svn.co('http://svn.alibaba.com/path/to/your/project', function (err, info) {
// ..
});
more read the API.
first, require svn.js
and new
var SVN = require('svn');
var svn = new SVN();
API base on SVN standard commands (svn command reference)
svn.add(files[, callback])
svn.ci(files[, callback])
todo ....