mirror of https://github.com/status-im/metro.git
Capitalized ‘Express’
Summary: It's a brand name. Closes https://github.com/facebook/metro/pull/103 Reviewed By: cpojer Differential Revision: D6484138 Pulled By: steveluscher fbshipit-source-id: 98d0aa9a2a7da1068b12a918b83c9a83bc19f4ae
This commit is contained in:
parent
0e583a981f
commit
31eb3a6529
|
@ -51,7 +51,7 @@ const httpServer = http.createServer(
|
|||
httpServer.listen(8081);
|
||||
```
|
||||
|
||||
In order to be also compatible with express apps, processRequest will also call its third parameter when the request could not be handled by Metro bundler. This allows you to integrate the server with your existing server, or to extend a new one:
|
||||
In order to be also compatible with Express apps, processRequest will also call its third parameter when the request could not be handled by Metro bundler. This allows you to integrate the server with your existing server, or to extend a new one:
|
||||
|
||||
```js
|
||||
const httpServer = http.createServer((req, res) => {
|
||||
|
|
Loading…
Reference in New Issue