From 78837947d6e45dcb8ca122eb9365b4a4fac7c3d0 Mon Sep 17 00:00:00 2001 From: Luka Kidric Date: Wed, 20 Mar 2019 01:24:51 +0100 Subject: [PATCH] Added a more information section (#28084) --- guide/english/nodejs/express/index.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/guide/english/nodejs/express/index.md b/guide/english/nodejs/express/index.md index 6f1f9e2233..be14cc6e14 100644 --- a/guide/english/nodejs/express/index.md +++ b/guide/english/nodejs/express/index.md @@ -550,3 +550,8 @@ project-root/ ``` This is pattern is commonly known as MVC, model-view-controller. Simply because our database model, the UI of the application and the controllers (in our case, routes) are written and stored in separate files. This design pattern makes any web application easy to scale and helps make the code more maintainable. + +## More Resources + +- [Express official site](https://expressjs.com/) +