본문 바로가기

REACT

(187)
[SI 커리어] SI에는 프론트엔드 개발자가 없다? SI 프로젝트 개발자의 역할 OKKY - si 프론트엔드?? SI 프로젝트에서 개발자는 무슨 일을 하는가?SI 개발 단계보통 SI에는 화면 및 업무 분석 설계 및 퍼블리싱 등 초반 작업들이 존재하지만, 주로 개발 단계에서 개발자들이 하는 업무는 다음과 같다. 엑셀 또는 시스템에서 할당된 개발 물량을 확인한다 1.에서 파악한 화면 및 데이터에 대한 분석설계 자료를 확인한다. 화면 및 업무 대한 문제가 있을 경우 설계자(업무PL)와 논의한다. 데이터베이스 쪽 문제가 있을 경우 DBA 혹은 설계자(업무PL)와 논의한다. 기존 개발된 함수를 호출할 경우 해당 함수 개발자와 논의한다. 2에서 개발한 건을 해당 프로젝트의 테스트 기준에 맞게 테스트한다. 입출력 조건 및 업무 조건에 맞게 테스트한다. 때때로 테스트 가능한 화면을 산출물화 요구하..
[번역] 자바스크립트 함수형 파이프라인으로 리팩토링 키워드 : javascript, 자바스크립트, 함수형 프로그래밍, 리팩토링, functional programming, refactoring 원문 : https://refactor-like-a-superhero.vercel.app/en/chapters/09-functional-pipeline Functional Pipeline | Refactor Like a Superhero Book about how to refactor code efficiently and without pain. refactor-like-a-superhero.vercel.app 함수형 파이프라인 코드를 비즈니스 로직과 최대한 유사하게 보이게 프로그래밍 하는 방법 데이터 변환 비즈니스 워크플로우는 데이터 변환입니다. 예를 들어 주문에..
[번역] 리액트 Compound Component 잘 사용하기 원문 : https://itnext.io/unlock-the-full-potential-of-react-with-the-compound-components-pattern-495a1bdb8b8f 🔥 Best Practices of React Compound Components Pattern: Unlock the Full Potential Let’s improve React Component Design with This Surprisingly Easy Pattern itnext.io Compound Component 패턴이란? 컴파운드 컴포넌트 패턴(복합 컴포넌트 패턴)은 복잡한 컴포넌트를 만들기 위해 작은 컴포넌트들을 합성하는 것 내부적으로 캡슐화된 상태를 공유 보통 컨텍스트(상태)를 가진 부모 컴포넌트..
프론트엔드 클린 아키텍처 with React 원문 : https://bespoyasov.me/blog/clean-architecture-on-frontend/ Clean Architecture on Frontend In this post, I describe what the clean architecture is, how to use it with JS/TS code bases and if it's even worth it. bespoyasov.me 백엔드에서 주로 사용하는 클린 아키텍처를 프론트엔드에 어떻게 적용할 수 있을까? 레이어의 분리 먼저 의존성의 방향을 정립하기 위해 레이어를 분리한다. 가장 순수한 우리의 코드, 애플리케이션인 Domain은 다른 어떤 것에도 의존해선 안된다. Domain 계층에는 도메인 객체, 도메인 서비스만 존재할 수..
[번역] React TDD 기초 원문 : https://www.freecodecamp.org/news/test-driven-development-tutorial-how-to-test-javascript-and-reactjs-app/ Test-Driven Development Tutorial – How to Test Your JavaScript and ReactJS Applications Understanding test-driven development is an essential part of being a prolific software developer. Testing provides a solid platform for building reliable programs. This tutorial will show you all y..
리액트 디자인 패턴 : uncontrolled component pattern TL;DR uncontrolled component는 컴포넌트의 관심사를 달성하기 위해 스스로 내부 상태를 관리하는 컴포넌트입니다. 컴포넌트에 상태 관리 책임을 넘기고 편해지는 방법을 알아봅시다. 원문 번역입니다 : https://jjenzz.com/component-control-freak Are You a Component Control Freak? It's tempting to always control the components we implement but we can sometimes simplify things if we use the uncontrolled pattern. jjenzz.com 우리는 종종 컴포넌트의 상태를 직접 제어하려 합니다. 리액트 튜토리얼(React’s own intr..
[번역] Headless UI Component란 무엇인가? 원문 : https://www.merrickchristensen.com/articles/headless-user-interface-components/ Merrick Christensen Using Webflow with Netlify Configure Netlify to send particular routes to Webflow so that you can selectively serve pages that are designed and hosted on Webflow. 2 Minute Read » JSON Lisp Learn about how programming languages work as we design & implemen www.merrickchristensen.com 요약 headele..
Refactoring React(리팩토링 리액트) : Debugging(디버깅) 불필요한 console.log를 아예 작성하지 않으면서 디버깅해 봅시다. 그리고 디버깅 효율과 생산성도 높여봅시다. 아래 글의 번역입니다. https://profy.dev/article/debug-react-vscode How To Debug React Apps With VS Code - Boost Your Debugging Productivity Debugging a React app can be a painful process. Speed up your workflow with the VS Code debugger and decrease friction. Good news: It's super simple. profy.dev 그동안의 디버깅 문제가 발생할 것이라 추측되는 지점 근처에 console.l..