UNPKG

nodesvn

Version:

Node.JS bindings to interacting with a Subversion (SVN) repository. Written in C++, this binding interacts directly with the SVN libraries to provide quick, easy access to your Subversion repositories

13 lines (10 loc) 166 B
nodesvn = require('./build/Release/nodesvn'); function SVN() { if(!this.client) { this.client = new nodesvn.SVN(); } return this.client; } exports.SVN = SVN;