목록Face the fear, build the future (128)
Silver Library (Archived)
Intro. "그게 좋은 건 알지만, 그걸 실현 하는건 시니어 소프트웨어 엔지니어 수준은 되어야 하지 않을까?" 라고 생각을 하고 있었습니다. 정말 막막했죠. 오로지 블로그에서나 Google Anlytics 를 도입하고, 이를 기반으로 해서 구글 창에서 열람 하는 건 알아도, 이걸 어떻게 백엔드 부분이며 설정을 하고, 또 어떻게 현황판을 설계해서... 잠깐. 그러고 보니 Google Analytics 가 현황판인데, 이 것도 블로그 분석을 무슨 크게 잘 한게 아니라 그저 몇가지의 설정만 부여해서 해낸 것이었습니다. 너무 어렵게 생각 한 건지도 모르겠다는 생각이 들었던 저는, "지금이라면, 그 의문에 해답을 찾을 수 있을 것 같다" 라고 생각하며 찾은 정보가 있습니다. 이 부분을 기록해둘까 합니다. 쓸일이..
There is something called 'A design pattern for Redux'. In this post, let's research how 'store' concept can be used. Do remember, Redux life cycle should be: Action Creator -> Action -> Dispatch -> Reducers -> Store Which means: You -> Booking Form -> Submit Form -> Ticket Counters -> Movie Cinema Point is; Config slice then set store. cakeSlice.js create feature slice using createSlice functio..
이 부분을 두고 '어떻게 할까...' 하던 중, 그냥 async 로 할 때 Redux 를 쓰게 될 경우에는 'redux -> axios' 로 조합을 구성 하면 되겠다는 잠정 결론이 나왔습니다. 이 글은 redux-thunk middleware 개념을 적용해서 async data 과정에서 axios를 함께 적용하는 사례를 기반으로 간략히 기록되었습니다. Prerequisite. - You need to install the following: npm i axios redux-thunk Redux Thunk. Thunk middleware for Redux. It allows writing functions with logic inside that can interact with a Redux store's..
부제는 '필자가 실전에서도 쓸 수 있거나, 써 본 경험이 있는 디자인 패턴' 입니다. 한마디로 '저런 기반으로 시작한 적이 있었는데...!' 싶은 것들. #1 Factory Method Pattern #2 Abstract Factory Pattern #3 Decorator Pattern #4 Proxy Pattern #5 Iterator Pattern #6 Observer Pattern 참고. JavaScript Design Patterns – Explained with Examples Hi everyone! In this article I'll explain what design patterns are and why they're useful. We'll also go through some of th..