JavaScript
-
JS DeepDive - Javascript에서 Array는 과연 Array인가?DevLog 2023. 4. 8. 03:39
해당 글은 다음 글을 참고하여 작성하였습니다. https://itnext.io/v8-deep-dives-understanding-array-internals-5b17d7a28ecc [V8 Deep Dives] Understanding Array Internals This blog post aims to briefly go through various aspects of V8’s JS arrays internals, such as memory layout, size restrictions. itnext.io 1. 과연 Array는 Fixed Size Array인가? C 언어를 해봤다면 배열은 원래 고정 크기 배열를 말한다 (물론 포인터를 이용해서 LinkedList 같은걸 구현할 수 있긴 하지만) 우리가 ..
-
JS - API 요청 최적화 및 라이브러리 개발DevLog 2023. 4. 4. 00:31
https://www.npmjs.com/package/useful-decorator useful-decorator [](). Latest version: 1.2.0, last published: 11 minutes ago. Start using useful-decorator in your project by running `npm i useful-decorator`. There are no other projects in the npm registry using u www.npmjs.com API 요청을 어떻게 최적화 할까? 고민을 해보다가 JPA의 어노테이션 시스템을 떠올리게 되었다. 그래서 이 시스..