React에서 object를 useState로 관리할 때 주의할 점
React에서 object를 useState로 관리한다면, setState를 할 때 반드시 새로 object를 만들어서 넣어라.
React에서 object를 useState로 관리한다면, setState를 할 때 반드시 새로 object를 만들어서 넣어라.
If you manage an object with useState in React, always create a brand-new object and pass it in when you call setState.
typescript에서 object의 모든 key값을 기준으로 무언가 작업(object 비교)를 할 때, type 때문에 골치아파진다. object의 type은 정해져 있는데, Object.keys() api를 사용하면 key가 string type으로 뽑혀 나온다. string ...
In typescript, when you want to do something (like comparing objects) based on all of an object’s keys, the type becomes a headache. The object’s type is fix...
React 개발하다가 생각난 거. Object destructing으로 받아온 string값이 useEffect의 dependency로 들어있을 경우, object는 바뀌되 그 안의 string property의 값은 변경되지 않으면, useEffect는 동작할까? 검증을 위해 몇...
Something that came to mind while working on React. When a string value obtained through object destructuring is in a useEffect’s dependency, if the object c...
javascript Set 자료형에 object를 element로 넣는다면, 각 element가 unique한지 어떻게 구별하는 기준은 무엇일까? object 안의 property value까지 비교할까?
If you put objects as elements into a JavaScript Set, what is the criterion for deciding whether each element is unique? Does it compare even the property va...
The Situation
node_modules의 구조
The Structure of node_modules
iframe.contentWindow.postMessage(msg, '*');
iframe.contentWindow.postMessage(msg, '*');
npm audit fix --force 를 하면 node module의 버전을 낮추기도 한다. 보안취약점이 발생하지 않는 버전을 찾기 때문.
Running npm audit fix --force can also downgrade the version of a node module. That’s because it looks for a version where the security vulnerability doesn’t...
다른 프로젝트에서 번들링 한 output 파일을 react 등 다른 frontend framework에서 가져다 쓸 수 있을까? 물론 이런 걸 하기 위해 모듈화를 하는 거지만, 간혹 레거시와 함께 해야 할 필요가 있을 때가 있다. craco를 쓰면 간단하다.
Can you take an output file bundled in another project and use it in a different frontend framework such as React? Of course, the whole point of modularizati...
xargs는 리눅스에서 파이프라인 이전 단계를 standard input으로 하여 다음 명령을 실행하는 기능을 한다.
On Linux, xargs takes the output of the previous stage in a pipeline as standard input and uses it to run the next command.