https://github.com/os-js/osjs-webdav-adapter
OS.js WebDAV VFS Adapter
https://github.com/os-js/osjs-webdav-adapter
osjs osjs-adapter
Last synced: 11 months ago
JSON representation
OS.js WebDAV VFS Adapter
- Host: GitHub
- URL: https://github.com/os-js/osjs-webdav-adapter
- Owner: os-js
- License: other
- Created: 2018-07-23T12:14:49.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-08-09T22:52:40.000Z (almost 4 years ago)
- Last Synced: 2025-06-06T11:08:47.868Z (12 months ago)
- Topics: osjs, osjs-adapter
- Language: JavaScript
- Homepage:
- Size: 11.7 KB
- Stars: 3
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
[OS.js](https://www.os-js.org/) is an [open-source](https://raw.githubusercontent.com/os-js/OS.js/master/LICENSE) web desktop platform with a window manager, application APIs, GUI toolkit, filesystem abstractions and much more.
[](https://www.patreon.com/user?u=2978551&ty=h&u=2978551)
[](https://opencollective.com/osjs)
[](https://liberapay.com/os-js/)
[](https://paypal.me/andersevenrud)
[](https://community.os-js.org/)
# OS.js WebDAV VFS Adapter
This is the WebDAV VFS (Server) Adapter for OS.js.
## Installation
```
npm install @osjs/webdav-adapter
```
## Usage
```
const webdavAdapter = require('@osjs/webdav-adapter');
osjs.register(VFSServiceProvider, {
args: {
adapters: {
webdav: webdavAdapter
}
}
});
```
Then create a mountpoint. Example using ownCloud:
```
// src/server/config.js
{
vfs: {
mountpoints: [{
name: 'owncloud',
label: 'ownCloud',
adapter: 'webdav',
attributes: {
connection: {
uri: 'http://localhost:8002',
username: 'osjs',
password: 'osjs',
access_token: null,
prefix: '/remote.php/webdav'
}
}
}]
}
}
// src/client/config.js
{
vfs: {
mountpoints: [{
name: 'owncloud',
label: 'ownCloud'
}]
}
}
```
*At some point users can create their own server mounts via the client*.
## Contribution
* **Sponsor on [Github](https://github.com/sponsors/andersevenrud)**
* **Become a [Patreon](https://www.patreon.com/user?u=2978551&ty=h&u=2978551)**
* **Support on [Open Collective](https://opencollective.com/osjs)**
* [Contribution Guide](https://github.com/os-js/OS.js/blob/master/CONTRIBUTING.md)
## Documentation
See the [Official Manuals](https://manual.os-js.org/) for articles, tutorials and guides.
## Links
* [Official Chat](https://gitter.im/os-js/OS.js)
* [Community Forums and Announcements](https://community.os-js.org/)
* [Homepage](https://os-js.org/)
* [Twitter](https://twitter.com/osjsorg) ([author](https://twitter.com/andersevenrud))
* [Google+](https://plus.google.com/b/113399210633478618934/113399210633478618934)
* [Facebook](https://www.facebook.com/os.js.org)
* [Docker Hub](https://hub.docker.com/u/osjs/)