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 🙏

© 2024 – Pkg Stats / Ryan Hefner

nico.drive

v7.6.3

Published

WebDav Server with cool user interface for web and mobile.

Downloads

16

Readme

nico.drive

Hironico's nico.drive is a webdav server running on nodejs. It features full support of WebDAV protocol plus additional exclusive features to ease display and search of hosted files. To take full advantage of the additional APIs, the server comes with its own web application embbedded (aka the nico.drive.client project).

It's an all-in-one solution to backup important files and memories yet very simple to install and use.

Features

  • WebDAV compliant server compatible with all WebDav enabled devices such as NAS (Synology, QNap etc...)
  • Out of the box ready to run but also highly configurable (see dotenv-sample file)
  • Additional features as additional REST api :
    • image thumbnail generator
    • image metadata API support for EXIF and XMP
    • digital camera raw file formats support for thumbs
  • Embedded WebDAV explorer web application

Getting started

In order to get it up and running in your environment, you need :

  • A server box : private cloud or dedicated machine, the choice is yours. For instance, we use a Linux dedicated box.
  • An SSL certificate (with its key). Self signed for development/testing or use Let's Encrypt for production.

Assuming you have configured your box with a dedicated user ; to run your server, then you need to:

  • Git clone the repository

  • COPY the "dotenv-sample" file into a file named ".env", then adapt to reflect your current setup.

  • npm install

  • npm run build

  • npm run start

  • Connect WebDav client to your new server (follow vendor instructions)

    or

    Point you browser at the root url of your server (see .env file for setup)

Developper information

The following is developper instructions about the way Nico's Drive has been built. Is contains various links where the author found instructions on how to setup teh development environment, code, libraries used etc...

Full documentation reference (educational)

  • In order to setup the project we used a slightly updated version of the tutorial available here at okta
  • tslint being outdated, we used eslint instead with instructions here Getting started with eslint
  • In order to get HTTPS working we followed the following tutorial: Running ExpressJS server over HTTPS
  • After that we needed configuration options: so we use the dotEnv project
  • Created the azure-pipelines.yml to get continuous integration from Azure DevOps
  • Thumbnail library is SHARP
  • Original Digital Camera RAW file support from dcraw : https://www.dechifro.org/dcraw/
  • Advanced Digital Camera RAW file support provided via LibRaw