npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@vquie/n8n-nodes-dav

v0.1.12

Published

Custom n8n nodes for WebDAV, CalDAV, and CardDAV protocols

Readme

n8n-nodes-dav

This is an n8n community node. It lets you use WebDAV, CalDAV, and CardDAV protocols in your n8n workflows.

WebDAV, CalDAV, and CardDAV are standard protocols for accessing and managing files, calendars, and address books on remote servers. These nodes enable seamless integration with DAV-compliant servers for comprehensive data synchronization and management.

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials
Compatibility
Usage
Resources
Version history

Installation

Follow the installation guide in the n8n community nodes documentation.

Manual Installation

  1. Clone the repository:
git clone https://github.com/x40x1/n8n-nodes-dav.git
cd n8n-nodes-dav
  1. Install dependencies:
npm install
  1. Build the project:
npm run build

Operations

WebDAV Node

  • Download File: Retrieve files from the DAV server
  • Upload File: Upload files to the DAV server
  • Get Properties: List directory contents and file properties
  • Create Directory: Create new directories
  • Delete Resource: Remove files or directories
  • Move Resource: Move files/directories to new locations
  • Copy Resource: Copy files/directories

CalDAV Node

  • Get Calendars: List available calendars
  • Get Events: Retrieve calendar events with optional time filtering
  • Create Event: Add new calendar events
  • Update Event: Modify existing events
  • Delete Event: Remove calendar events

CardDAV Node

  • Get Address Books: List available address books
  • Get Contacts: Retrieve contacts with optional filtering
  • Create Contact: Add new contacts
  • Update Contact: Modify existing contacts
  • Delete Contact: Remove contacts

Credentials

The nodes require authentication with your DAV server. You need to create a "DAV API" credential in n8n.

Prerequisites

  • Access to a DAV-compliant server (Nextcloud, OwnCloud, Apache/mod_dav, etc.)
  • Valid username and password for the DAV server

Authentication Methods

  • Basic Authentication: Username and password authentication
  • Server Configuration: Base URL of your DAV server

Setup Steps

  1. In n8n, go to Settings > Credentials
  2. Create a new "DAV API" credential
  3. Enter your DAV server details:
    • Base URL: Your DAV server URL (e.g., https://dav.example.com)
    • Username: Your DAV server username
    • Password: Your DAV server password

Compatibility

  • Minimum n8n version: 1.0.0
  • Tested with: n8n 1.0.x and 1.1.x
  • Node.js: >= 18.0.0 (recommended: 20.x)
  • DAV Server Compatibility:
    • Nextcloud (full WebDAV/CalDAV/CardDAV support)
    • OwnCloud (standard DAV protocol support)
    • Apache/mod_dav (basic WebDAV functionality)
    • SabreDAV (PHP-based DAV server library)
    • Other RFC-compliant DAV servers

Usage

Basic Setup

  1. Install the nodes following the installation guide
  2. Configure your DAV credentials
  3. Add a DAV node to your workflow
  4. Select the appropriate resource (File/Calendar/Address Book)
  5. Choose your desired operation
  6. Configure the operation parameters

Advanced Features

Expression Support

All nodes support n8n expressions for dynamic values:

  • File paths: {{$json.filename}}
  • Calendar paths: {{$node["Previous Node"].json.calendarPath}}
  • Contact filters: {{$json.searchTerm}}

Workflow Integration Examples

File Processing Workflow:

// WebDAV + File Processing nodes
const fileContent = item.json.fileContent;
const processedContent = fileContent.toString().toUpperCase();
item.json.processedFile = processedContent;

Calendar Data Integration:

// CalDAV + Calendar nodes
const icalData = item.json.calendarData;
// Parse iCalendar format for n8n calendar nodes
item.json.events = parseICalendar(icalData);

Contact Synchronization:

// CardDAV + CRM/Contact nodes
const vcardData = item.json.contactData;
// Transform vCard to structured contact format
item.json.contact = {
  name: extractVCardField(vcardData, 'FN'),
  email: extractVCardField(vcardData, 'EMAIL'),
  phone: extractVCardField(vcardData, 'TEL')
};

Development

Building

npm run build

Linting

npm run lint
npm run lintfix  # Auto-fix issues

Testing

Test the nodes locally using n8n desktop or your n8n instance.

Resources

Version history

0.1.0

  • Initial release
  • WebDAV node with 7 operations (Download, Upload, Get Properties, Create Directory, Delete, Move, Copy)
  • CalDAV node with 5 operations (Get Calendars, Get Events, Create Event, Update Event, Delete Event)
  • CardDAV node with 5 operations (Get Address Books, Get Contacts, Create Contact, Update Contact, Delete Contact)
  • Shared DAV API credentials
  • Full RFC compliance for DAV protocols
  • Expression support for dynamic values
  • Comprehensive error handling and workflow integration