Skip to content

Commit 4dcd5f1

Browse files
huntiefacebook-github-bot
authored andcommitted
Type serve-static and document /debugger-frontend (facebook#40765)
Summary: Pull Request resolved: facebook#40765 Types based on https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/serve-static/index.d.ts. Changelog: [Internal] Reviewed By: motiz88 Differential Revision: D50084591 fbshipit-source-id: 92fd833d90dfc5acbd3be0476f1da34e5742a732
1 parent 44f5989 commit 4dcd5f1

File tree

3 files changed

+126
-1
lines changed

3 files changed

+126
-1
lines changed

flow-typed/npm/serve-static_v1.x.x.js

+122
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
/**
2+
* Copyright (c) Meta Platforms, Inc. and affiliates.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*
7+
* @flow strict
8+
* @format
9+
* @oncall react_native
10+
*/
11+
12+
declare module 'serve-static' {
13+
import type {NextHandleFunction} from 'connect';
14+
import type http from 'http';
15+
16+
declare export type Options = $ReadOnly<{
17+
/**
18+
* Enable or disable accepting ranged requests, defaults to true. Disabling
19+
* this will not send `Accept-Ranges` and ignore the contents of the
20+
* `Range` request header.
21+
*/
22+
acceptRanges?: boolean,
23+
24+
/**
25+
* Enable or disable setting `Cache-Control` response header, defaults to
26+
* true. Disabling this will ignore the `immutable` and `maxAge` options.
27+
*/
28+
cacheControl?: boolean,
29+
30+
/**
31+
* Set how "dotfiles" are treated when encountered. A dotfile is a file or
32+
* directory that begins with a dot (".").
33+
*
34+
* Note this check is done on the path itself without checking if the path
35+
* actually exists on the disk. If `root` is specified, only the dotfiles
36+
* above the root are checked (i.e. the root itself can be within a dotfile
37+
* when when set to "deny").
38+
*
39+
* The default value is 'ignore'.
40+
*
41+
* 'allow' No special treatment for dotfiles
42+
* 'deny' Send a 403 for any request for a dotfile
43+
* 'ignore' Pretend like the dotfile does not exist and call next()
44+
*/
45+
dotfiles?: string,
46+
47+
/**
48+
* Enable or disable etag generation, defaults to true.
49+
*/
50+
etag?: boolean,
51+
52+
/**
53+
* Set file extension fallbacks. When set, if a file is not found, the
54+
* given extensions will be added to the file name and search for.
55+
* The first that exists will be served. Example: ['html', 'htm'].
56+
*
57+
* The default value is false.
58+
*/
59+
extensions?: Array<string> | false,
60+
61+
/**
62+
* Let client errors fall-through as unhandled requests, otherwise forward
63+
* a client error.
64+
*
65+
* The default value is true.
66+
*/
67+
fallthrough?: boolean,
68+
69+
/**
70+
* Enable or disable the immutable directive in the `Cache-Control` response
71+
* header.
72+
*
73+
* If enabled, the `maxAge` option should also be specified to enable
74+
* caching. The immutable directive will prevent supported clients from
75+
* making conditional requests during the life of the maxAge option to
76+
* check if the file has changed.
77+
*/
78+
immutable?: boolean,
79+
80+
/**
81+
* By default this module will send "index.html" files in response to a
82+
* request on a directory. To disable this set false or to supply a new
83+
* index pass a string or an array in preferred order.
84+
*/
85+
index?: boolean | string | Array<string>,
86+
87+
/**
88+
* Enable or disable `Last-Modified` header, defaults to true. Uses the file
89+
* system's last modified value.
90+
*/
91+
lastModified?: boolean,
92+
93+
/**
94+
* Provide a max-age in milliseconds for http caching, defaults to 0. This
95+
* can also be a string accepted by the `ms` module.
96+
*/
97+
maxAge?: number | string,
98+
99+
/**
100+
* Redirect to trailing "/" when the pathname is a dir. Defaults to true.
101+
*/
102+
redirect?: boolean,
103+
104+
/**
105+
* Function to set custom headers on response. Alterations to the headers
106+
* need to occur synchronously.
107+
*
108+
* The function is called as `fn(res, path, stat)`, where the arguments are:
109+
* `res` the response object
110+
* `path` the file path that is being sent
111+
* `stat` the stat object of the file that is being sent
112+
*/
113+
setHeaders?: (res: http.ServerResponse, path: string, stat: any) => any,
114+
}>;
115+
116+
declare type serveStatic = (
117+
root: string,
118+
options?: Options,
119+
) => NextHandleFunction;
120+
121+
declare module.exports: serveStatic;
122+
}

packages/dev-middleware/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@ Returns the list of available WebSocket targets for all connected React Native a
5858

5959
Returns version metadata used by Chrome DevTools.
6060

61+
#### GET `/debugger-frontend`
62+
63+
Subpaths of this endpoint are reserved to serve the JavaScript debugger frontend.
64+
6165
#### POST `/open-debugger`
6266

6367
Open the JavaScript debugger for a given CDP target (direct Hermes debugging).

packages/dev-middleware/src/createDevMiddleware.js

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import type {Logger} from './types/Logger';
1818
import reactNativeDebuggerFrontendPath from '@react-native/debugger-frontend';
1919
import connect from 'connect';
2020
import path from 'path';
21-
// $FlowFixMe[untyped-import] TODO: type serve-static
2221
import serveStaticMiddleware from 'serve-static';
2322
import openDebuggerMiddleware from './middleware/openDebuggerMiddleware';
2423
import InspectorProxy from './inspector-proxy/InspectorProxy';

0 commit comments

Comments
 (0)