https://github.com/hex7c0/mod_autoindex
generates directory indexes, automatically, with memoization, for Nodejs
https://github.com/hex7c0/mod_autoindex
mod-autoindex nodejs
Last synced: 8 months ago
JSON representation
generates directory indexes, automatically, with memoization, for Nodejs
- Host: GitHub
- URL: https://github.com/hex7c0/mod_autoindex
- Owner: hex7c0
- License: gpl-3.0
- Created: 2014-08-04T20:42:41.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2024-04-23T00:08:17.000Z (about 2 years ago)
- Last Synced: 2025-08-25T22:49:34.422Z (10 months ago)
- Topics: mod-autoindex, nodejs
- Language: JavaScript
- Homepage: https://github.com/hex7c0/mod_autoindex
- Size: 200 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# [mod_autoindex](https://github.com/hex7c0/mod_autoindex)
[](https://www.npmjs.com/package/mod_autoindex)
[](https://travis-ci.org/hex7c0/mod_autoindex)
[](https://ci.appveyor.com/project/hex7c0/mod_autoindex)
[](https://david-dm.org/hex7c0/mod_autoindex)
[](https://coveralls.io/r/hex7c0/mod_autoindex)
Generates directory indexes, automatically, similar to the Unix `ls` command or the Win32 `dir` shell command; with memoization.
In combination with [serve-static](https://github.com/expressjs/serve-static).
Display index of given root directory, like https://code.angularjs.org/2.0.0-alpha.30/ or `apache2 mod_autoindex`
## Installation
Install through NPM
```bash
npm install mod_autoindex
```
or
```bash
git clone git://github.com/hex7c0/mod_autoindex.git
```
## API
inside expressjs project
```js
var autoindex = require('mod_autoindex');
var app = require('express')();
app.use(autoindex(__dirname));
```
### autoindex(root [, options])
#### root
- `root` - **String** Index given root directory *(default "required")*
#### [options]
- `exclude` - **RegExp** Regular expression for files/dirs exclude *(default "disabled")*
- `dotfiles`- **Boolean** Flag for hide dotfiles *(default "true")*
- `date` - **Boolean** Flag for display modification time *(default "true")*
- `size` - **Boolean** Flag for display files size *(default "true")*
- `priority` - **Boolean** Flag for display dirs before files *(default "true")*
- `cache` - **Boolean** Flag for using cache (depends from mtime dir) *(default "true")*
- `strictMethod` - **Boolean** Flag for show "HEAD" and "GET" HTTP methods only *(default "false")*
- `sync` - **Boolean** Flag for using "sync" methods instead of callback *(default "false")*
- `json` - **Boolean** Flag for display json output instead of html *(default "false")*
- `static` - **Object | false** Options for [serve-static](https://github.com/expressjs/serve-static) or disable support (if you use static server like nginx) *(default "{}")*
## Examples
Take a look at my [examples](examples)
### [License GPLv3](LICENSE)