Socket
Socket
Sign inDemoInstall

@types/serve-static

Package Overview
Dependencies
4
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @types/serve-static

TypeScript definitions for serve-static


Version published
Weekly downloads
22M
increased by1.71%
Maintainers
1
Install size
3.83 MB
Created
Weekly downloads
 

Package description

What is @types/serve-static?

The @types/serve-static package contains TypeScript type definitions for the serve-static middleware, which is used with Node.js HTTP servers to serve static files. These type definitions allow TypeScript developers to use serve-static in a type-safe manner, ensuring that they use the correct types for function arguments, return types, and object properties.

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

Serve static files

This code sample demonstrates how to use serve-static with Express to serve static files from the 'public' directory. It also specifies that 'index.html' or 'index.htm' should be used as the default file to serve if a directory is requested.

import * as express from 'express';
import * as serveStatic from 'serve-static';

const app = express();

app.use(serveStatic('public', {'index': ['index.html', 'index.htm']}));

app.listen(3000, () => {
  console.log('Server is running on port 3000');
});

Other packages similar to @types/serve-static

Readme

Source

Installation

npm install --save @types/serve-static

Summary

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

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/serve-static.

Additional Details

  • Last updated: Fri, 29 Jul 2022 22:02:20 GMT
  • Dependencies: @types/mime, @types/node
  • Global values: none

Credits

These definitions were written by Uros Smolnik, Linus Unnebäck, and Devansh Jethmalani.

FAQs

Last updated on 29 Jul 2022

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