We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 686eb8c commit 970f268Copy full SHA for 970f268
1 file changed
ja/connect/README.md
@@ -140,9 +140,9 @@ ConnectやJunctionの実装を見てみると分かりますが、このアー
140
しかし、この機能も「与えられたパスにマッチした場合のみに反応する_middleware_を登録する」という単純なものです。
141
142
```js
143
-app.use('/foo', function fooMiddleware(req, res, next) {
144
- // req.url starts with "/foo"
145
- next();
+app.use("/foo", function fooMiddleware(req, res, next) {
+ // req.url starts with "/foo"
+ next();
146
});
147
```
148
0 commit comments