WebDAV.js -


MIT
跨平台
JavaScript

软件简介

WebDAV.js 是一个简单的 WebDAV 协议的 JavaScript 实现,目前还没有完成整个协议的支持,只支持基本的操作。

示例代码:

var fs = new WebDAV.Fs('http://localhost:1234/my_files');
var hello = fs.file('/my/hello.txt');
// This is the same as:
var hello = fs.file('http://localhost:1234/my_files/my/hello.txt');