https://github.com/bendera/wds-plugin-directory-index
Directory index plugin for Web Dev Server
https://github.com/bendera/wds-plugin-directory-index
dev-server plugin web-dev-server
Last synced: about 1 month ago
JSON representation
Directory index plugin for Web Dev Server
- Host: GitHub
- URL: https://github.com/bendera/wds-plugin-directory-index
- Owner: bendera
- License: mit
- Created: 2024-11-09T20:52:00.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-12-27T20:27:05.000Z (3 months ago)
- Last Synced: 2025-12-29T17:26:37.281Z (3 months ago)
- Topics: dev-server, plugin, web-dev-server
- Language: JavaScript
- Homepage:
- Size: 204 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Web Dev Server Directory Index Plugin
Directory index plugin for [@web/dev-server](https://modern-web.dev/docs/dev-server/overview/).

## Installation
```
npm install --save-dev @bendera/wds-plugin-directory-index
```
## Usage
Add the plugin to the Web Dev Server configuration file (web-dev-server.config.mjs).
```javascript
import { directoryIndexPlugin } from '@bendera/wds-plugin-directory-index';
export default {
//...
plugins: [
directoryIndexPlugin()
]
};
```
That's it! There are no settings.