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

vite-plugin-list-directory-contents

v1.4.5

Published

A Vite plugin for listing the directory contents when working with the dev server

Downloads

584

Readme

vite-plugin-list-directory-contents

A small vite plugin to list your directory contents.

Why? In development mode, vite will allow you to have as many inputs as you want, simply run vite . and the current folder will be served up. Clicking any .html files will be compiled by vite (vited?). So, rather than manually type in the paths to all your inputs, this will list all your files so you can click them with ease. Like the good 'ol Index Of / days.

How to use:

  1. npm i vite vite-plugin-list-directory-contents
  2. create a vite.config.ts (or .js) like this:
import { defineConfig } from "vite";
import { directoryPlugin } from "vite-plugin-list-directory-contents";

export default defineConfig({
  plugins: [directoryPlugin({ baseDir: __dirname })],
});
  1. The first time it's run, the plugin will create an index.html for you in your baseDir. You can put anything in this file, and it will be processed by vite, but the important part is the {%DIRECTORY%} template tag that will be replaced with the directory listing.

  2. go ahead and run vite from your cli, or set a "dev": "vite" in your `package.json scripts"

Config

directoryPlugin has two arguments:

  1. baseDir - where do you want to serve the files up from? __dirname is a good choice, but you can set to a subfolder.
  2. filterList - an array of files to filter out. Defaults to ['.DS_Store', 'package.json', 'package-lock.json', 'node_modules', '.parcelrc', '.parcel-cache', 'dist', 'packages', '.git', '.eslintrc', '.gitignore', '.npmrc', 'tsconfig.json', 'vite.config.ts', '.env', 'development.env', 'production.env']

Builds

This plugin is only meant to run in "serve" mode (development). It will be ignored on build.

Security

You should note that anytime you create a local server listing directory files on your computer, anyone on your local network could find the port and visit your application. This is great, because you can visit your apps from your phone.

This plugin doesn't allow any access to files that vite doesn't already do, but it does list your files, so don't run it on any folders you don't want opened up to your local network.

Vite does already deny common files like .env: https://vitejs.dev/config/server-options.html#server-fs-deny

Contributing

Edit plugin.ts, then run npm run build to build a copy. Edits welcome :)

You can run npm run demo to test things out with some code in the /demo dir.