Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Morgan が最初にリクエストをキャッチしてログに記録し (たとえばGET /home 200)、ホーム ルーター内にコンソール ログがある場合は、それを出力することを期待しています。
GET /home 200
Router.get("/home", (req, res) => { console.log("router invoked!" });
そして、これはターミナルで起こります:
router invoked! GET /home 200
上下逆に印刷してはいけない?