Last active
March 16, 2016 16:29
-
-
Save touv/11045459 to your computer and use it in GitHub Desktop.
webdav for nodjes with express middleware
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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