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

vite-plugin-glob-input

v0.2.1

Published

Vite plugin to add files to build.rollupOptions.input using fast-glob

Readme

vite-plugin-glob-input

npm version license

Vite plugin to add files to build.rollupOptions.input using fast-glob patterns.

Features

  • 📦 Vite 6+ Compatible: Fully supports Vite 6 and later versions (including Vite 7 beta)
  • 🔍 Fast Glob Integration: Uses fast-glob for efficient file pattern matching
  • 🏷️ Smart Aliasing: Automatically generates meaningful entry names
  • 📁 Flexible Configuration: Support for complex directory structures
  • 🎯 TypeScript First: Built with TypeScript for better development experience

Installation

npm install -D vite-plugin-glob-input

Usage

Basic Usage

// vite.config.ts
import { defineConfig } from 'vite'
import globInput from 'vite-plugin-glob-input'

export default defineConfig({
  plugins: [
    globInput({
      patterns: 'src/pages/**/*.html'
    })
  ]
})

Advanced Configuration

// vite.config.ts
import { defineConfig } from 'vite'
import globInput from 'vite-plugin-glob-input'

export default defineConfig({
  plugins: [
    globInput({
      patterns: ['src/pages/**/*.html', 'src/components/**/*.html'],
      options: {
        ignore: ['**/private/**', '**/_*'],
        absolute: false
      },
      disableAlias: false,
      homeAlias: 'main',
      rootPrefix: 'page',
      dirDelimiter: '-',
      filePrefix: '_'
    })
  ]
})

Configuration Options

VitePluginGlobInputOptions

| Option | Type | Default | Description | |--------|------|---------|-------------| | patterns | string \| string[] | - | Required. Glob patterns to match files | | options | FastGlob.Options | {} | Options passed to fast-glob | | disableAlias | boolean | false | Disable automatic alias generation | | homeAlias | string | 'home' | Alias name for index files in root | | rootPrefix | string | 'root' | Prefix for non-index files in root | | dirDelimiter | string | '-' | Character to replace path separators | | filePrefix | string | '_' | Prefix for non-index files |

Fast-Glob Options

The options field accepts any fast-glob options. Common options include:

  • ignore: Array of patterns to ignore
  • deep: Maximum depth of directory traversal
  • onlyFiles: Return only files (default: true)
  • case: Case sensitive matching

File Naming Convention

The plugin automatically generates entry aliases based on file paths:

| File Path | Generated Alias | Description | |-----------|----------------|-------------| | src/index.html | home | Root index file | | src/about.html | root_about | Root non-index file | | src/blog/index.html | blog | Directory index file | | src/blog/post.html | blog_post | Directory non-index file |

Custom Naming

globInput({
  patterns: 'src/**/*.html',
  homeAlias: 'main',      // index.html → 'main'
  rootPrefix: 'page',     // about.html → 'page_about'
  dirDelimiter: '__',     // blog/post.html → 'blog__post'
  filePrefix: '--'        // blog/post.html → 'blog--post'
})

Examples

Static Site Generation

// Generate entries for all pages
globInput({
  patterns: 'src/pages/**/*.html',
  options: {
    ignore: ['**/templates/**', '**/_*']
  }
})

Multi-Entry Application

// Multiple entry points for different sections
globInput({
  patterns: [
    'src/admin/**/*.html',
    'src/public/**/*.html'
  ]
})

Disable Aliasing

// Use file paths as-is
globInput({
  patterns: 'src/**/*.html',
  disableAlias: true
})

Compatibility

  • Vite: ^6.0.0 || ^7.0.0
  • Node.js: 18.x, 20.x, 22.x
  • TypeScript: 5.x

Development

Testing

This project uses Vitest 3.2 for testing:

# Run tests
npm test

# Run tests with coverage
npm run coverage

# Run tests in watch mode
npm run test:watch

Building

# Build the package
npm run build

# Type check
npm run type-check

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT License - see the LICENSE file for details.

Changelog

v0.0.1

  • ✨ Initial release
  • ✨ Vite 7 beta support
  • ✨ Vitest 3.2 integration
  • 🔧 TypeScript configuration
  • 🐛 Robust error handling
  • 📝 Comprehensive documentation