Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/silexlabs/unifile-webdav
WebDav plugin for Unifile
https://github.com/silexlabs/unifile-webdav
nextcloud owncloud unifile webdav
Last synced: 2 months ago
JSON representation
WebDav plugin for Unifile
- Host: GitHub
- URL: https://github.com/silexlabs/unifile-webdav
- Owner: silexlabs
- License: mit
- Created: 2017-10-19T08:40:49.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2022-03-17T18:09:32.000Z (almost 3 years ago)
- Last Synced: 2024-10-01T10:05:34.453Z (3 months ago)
- Topics: nextcloud, owncloud, unifile, webdav
- Language: JavaScript
- Size: 1010 KB
- Stars: 5
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Unifile WebDAV
This is a plugin for [Unifile](https://github.com/silexlabs/unifile) to use WebDAV services with it.
To include it in Unifile, you first need to install it
```bash
# Node 6+
$ npm install unifile-webdav -S# Node 8+
$ npm install unifile-webdav
```Then, you'll have to register it to unifile
```javascript
const Unifile = require('unifile');
const UnifileWebDAV = require('unifile-webdav');const unifile = new Unifile();
// Register a new connector
unifile.use(new UnifileWebDAV({redirectUri: 'http://localhost:3000/callback'}));
```