Socket
Socket
Sign inDemoInstall

@types/serve-index

Package Overview
Dependencies
64
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @types/serve-index

Type definitions for serve-index v1.7.2 from https://www.github.com/DefinitelyTyped/DefinitelyTyped


Version published
Weekly downloads
8.9M
decreased by-0.79%
Maintainers
1
Install size
1.65 MB
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-dev @types/serve-index

Summary

This package contains type definitions for serve-index v1.7.2.

The project URL or description is https://github.com/expressjs/serve-index

Credits

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

Details

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

Additional Details

  • Last updated: Thu, 19 May 2016 20:06:12 GMT
  • Typings kind: ProperModule
  • Library Dependencies: none
  • Module Dependencies: express, fs
  • Global values: serveIndex

FAQs

Last updated on 19 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