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

@universis/webdav

v1.1.0

Published

Universis Project WebDAV client library for content management.

Readme

@universis/webdav

@universis/webdav exports an alternative content service for Universis that allows you to use a WebDAV server as the storage backend for private content. It provides a simple and efficient way to integrate WebDAV storage into Universis environments, enabling users to manage their private content using WebDAV protocol.

Installation

npm install @universis/webdav

Usage

Register WebDAVContentService under services service section, overriding PrivateStorageService:

{
  "serviceType": "./services/content-service#PrivateContentService",
  "strategyType": "@universis/webdav#WebDAVContentService"
}

Then, add the WebDAV configuration under settings/universis/webdav

{
  "settings": {
    "universis": {
      "webdav": {
        "url": "https://webdav.example.com/content/private/",
        "username": "user",
        "password": "pass"
      }
    }
  }
}

where url is the WebDAV server URL, username and password are the credentials to access the WebDAV server.

An example of enabling WebDAV protocol on nginx

nginx natively supports WebDAV protocol, so you can easily enable it by adding the following configuration to your nginx server block:

Add a location block for WebDAV, for example:

location /webdav {
    alias /var/www/webdav;
    client_body_temp_path /var/tmp/nginx/webdav;
    dav_methods PUT DELETE MKCOL COPY MOVE;
    create_full_put_path on;

    # Enable basic authentication
    auth_basic "Restricted Access";
    auth_basic_user_file /etc/nginx/webdav.passwd;

    # deny all access unless authenticated
    satisfy all;
    allow all;  # This allows all authenticated users
    deny all;   # This denies all other users
}

where /webdav is the URL path for WebDAV access, /var/www/webdav is the directory where the WebDAV files are stored, and /etc/nginx/webdav.passwd is the file containing the username and password for authentication.

/etc/nginx/webdav.passwd can be created using the htpasswd command:

htpasswd -c /etc/nginx/webdav.passwd user

This command will create a new password file and add a user with the specified username. You will be prompted to enter a password for the user.

License

This project is licensed under the GNU Lesser General Public License v3.0. See the LICENSE file for details.