Official Blog
뚠뚠멍
뚠뚠멍의 생각들
All (12)
Information Technology (12)
Reusable API Call Code (Blocking and Recalling on Token Errors)
This article explains how to handle token expiration errors during API calls by stopping subsequent calls and reissuing a new token. Includes precautions when using Promise.all.
0
0
January 26, 2025
Creating Extensible Common Vue Components from UI Library Components
This article introduces how to use Vue UI library components in an extensible way. It overcomes the limitations of customizing with :deep() and provides various solutions with concrete examples of creating reusable common components.
0
0
November 21, 2024
Exploring TLS
This article explains server checks and TLS 1.2 updates in response to the end of TLS 1.1 support, the principles of TLS, the differences between 1.1 and 1.2, and Cipher Suite components.
0
2
October 27, 2024
Tail Call Optimization (꼬리 재귀 최적화)
Tail Call Optimization (TCO) is a technique to prevent stack overflow in recursive functions and improve memory efficiency. In JavaScript, it's supported in ES6 strict mode and can be implemented using the trampoline technique.
0
0
October 12, 2024