Skip to content

Instantly share code, notes, and snippets.

@touv
Last active March 16, 2016 16:29
Show Gist options
  • Save touv/11045459 to your computer and use it in GitHub Desktop.
Save touv/11045459 to your computer and use it in GitHub Desktop.
webdav for nodjes with express middleware
"use strict";
var express = require('express');
var app = express();
var jsDAV = require("jsDAV/lib/jsdav");
app.use(function (req, res, next) {
if (req.url.search(/^\/webdav/) >= 0) {
jsDAV.mount({
node: __dirname + "/data",
mount: "/webdav",
server: req.app,
standalone: false
}
).exec(req, res);
}
else {
next();
}
}
)
app.get('/', function (req, res) {
res.send('OK');
}
);
app.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment