Socket
Socket
Sign inDemoInstall

@types/serve-index

Package Overview
Dependencies
12
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @types/serve-index

TypeScript definitions for serve-index v1.7.2


Version published
Weekly downloads
8.4M
decreased by-1.13%
Maintainers
1
Install size
893 kB
Created
Weekly downloads
 

Package description

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

Readme

Source

Installation

npm install --save @types/serve-index

Summary

This package contains type definitions for serve-index v1.7.2 (https://github.com/expressjs/serve-index).

Details

Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/types-2.0/serve-index

Additional Details

  • Last updated: Fri, 20 May 2016 17:00:48 GMT
  • File structure: ProperModule
  • Library Dependencies: none
  • Module Dependencies: express, fs
  • Global values: serveIndex

Credits

These definitions were written by Tanguy Krotoff https://github.com/tkrotoff.

FAQs

Last updated on 20 May 2016

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc