Programming Languages/javascript
[백엔드 JS 이론] Index
Unchapterd
2021. 8. 7. 15:02
[ [백엔드 JS 이론] Index :: Unchaptered의 초보코딩 (tistory.com) ]
Dependencies
- express
- babel
- morgan
- nodemon
- MVP Styles
Index
Index | Title | Link |
HTML Request(GET) | Cannot GET / | |
method | app.end app.send app.use |
|
Middlewares | const name=(req,res)=>{ return app.end; } |
[백엔드 JS 이론] Middleware :: Unchaptered의 초보코딩 (tistory.com) [백엔드 JS 이론] Router , Middleware, Controllers :: Unchaptered의 초보코딩 (tistory.com) |
Controllers | const name=(req,res)=>{} | [백엔드 JS 이론] Router , Middleware, Controllers :: Unchaptered의 초보코딩 (tistory.com) |
Router | Link 를 효율적으로 관리하기 위한.. | [백엔드 JS 이론] Router , Middleware, Controllers :: Unchaptered의 초보코딩 (tistory.com) |
PUG / views | Rerturning HTML to user | |
PUG / partials | 일종의 interface? | |
PUG / inheritance | 상속 | |
PUG / extends | 상속 대상 호출 | |
PUG / Conditionals | 조건문 | |
PUG / Interaction | JS 정보 받아들이기 | |
PUG / MIxin | JS 정보 받아들여서 함수화 |