šŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more →
Socket
Sign inDemoInstall
Socket

@types/serve-index

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/serve-index

TypeScript definitions for serve-index

1.9.4
ts4.5
ts4.6
ts4.7
ts4.8
ts4.9
ts5.0
ts5.1
ts5.2
ts5.3
ts5.4
ts5.5
ts5.6
ts5.7
ts5.8
ts5.9
latest
Source
npm
Version published
Weekly downloads
11M
6.46%
Maintainers
1
Weekly downloads
Ā 
Created

What is @types/serve-index?

The @types/serve-index package provides TypeScript type definitions for the serve-index package, which is used to serve pages that display directory listings for a given path in your web server. These type definitions enable TypeScript developers to use serve-index with type safety, ensuring that they use the API correctly according to the expected types.

What are @types/serve-index's main functionalities?

Type Definitions for Directory Listing Configuration

This feature allows developers to configure directory listings with specific options such as displaying icons and filtering files. The type definitions ensure that the configuration options passed to serveIndex are correctly typed.

import * as express from 'express';
import * as serveIndex from 'serve-index';

const app = express();

app.use('/files', serveIndex('path/to/directory', {
  icons: true,
  filter: (filename, index, files, dir) => files[index].name.endsWith('.txt')
}));

Other packages similar to @types/serve-index

FAQs

Package last updated on 07 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts