/*wild 주소를 다음과 같이 /posts{*name}로 바꾸면 어떤 라우터에 매칭될까요?
app.js
...
app.use('/user', userRouter);
app.use('/posts{*name}', (req, res, next) => {
res.status(200).send('어떤 라우터에 매칭될까요?');
});
app.use((req, res, next) => {
res.status(404).send('Not Found');
});
...
/posts, /posts/, /posts/1, /posts/new, /posts/1/comments 등에 모두 매칭됩니다. 주소가 /posts*name이면 /posts에는 매칭되지 않습니다.
라우터는 이 정도로만 알아보고 다음 절에서 req, res 객체에 대해 알아봅시다.