Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@tomsd/webdav-handler

tomsd14MIT1.0.1

webdav client

readme

@tomsd/webdav-handler

Installation

npm install @tomsd/webdav-handler

Usage

// with bundler...
import webdav_handler from "@tomsd/webdav-handler";

webdav_handler.getDirectory("https://yoursite/").then(function(items){
  console.log(items);
}, function(error){
  console.log(error);
});