devBlog
본문 바로가기
devBlog.kr
포스트주간 인기글최근 본 글즐겨찾기(로그인 필요)프로필(로그인 필요)새로운 소식요청하기
devBlog.kr
포스트주간 인기글최근 본 글즐겨찾기(로그인 필요)프로필(로그인 필요)새로운 소식요청하기
devBlog

푸터 메뉴

탐색
  • 포스트
  • 태그별 보기
  • 기업별 보기
  • 주간 인기글
정보
  • 이용약관
  • 개인정보 처리방침

© 2026 devBlog.kr. All rights reserved.

·

v3.0.1

태그/React

React 글 모음

기업 기술블로그의 React 관련 글 92개

라포랩스 로고

라포랩스

2025-09-22 · 11개월 전

라포랩스 직무인터뷰 시리즈 Colon : Frontend Engineer

FE 심은서 님, FE 조승희 님

CareerFrontendReact
모두싸인 로고

모두싸인

2025-09-12 · 11개월 전

하나의 프론트엔드 코드로 멀티 환경 운영하기

FrontendReactVue
올리브영 로고

올리브영

2025-08-20 · 12개월 전

Visual Studio Code를 Cursor처럼? Amazon Q로 AI 코딩 환경 업그레이드하기

안녕하세요, 올리브영에서 프론트엔드 업무를 진행하고 있는 개발새발자입니다. 최근 개발 환경의 가장 큰 화두는 단연 LLM 기반의 AI 코딩 도우미일 것입니다. 저희 올리브영에서도 개발자들의 생산성을 혁신하기 위해 ChatGPT, Gemini…

AI/MLDevOpsFrontendReactTools
버즈빌 로고

버즈빌

2025-08-04 · 약 1년 전

버즈빌 프론트엔드 변천사

버즈빌 Supply 그룹의 Product Growth 팀의 Luke입니다. 저희 버즈빌에서 지난 몇 년간 겪어온 프론트엔드 아키텍처 변화를 공유하려 합니다. AngularJS에서 시작해 Vue, React를 거쳐 Next.js까지, 각 전환점에서의 고민과 선택 과정을 솔직하게 담았습니다. AngularJS에서 Vue로: 통합 어드민의 시작 초기 버즈빌은 광…

ArchitectureFrontendNext.jsReactVue

뤼이드

2025-06-19 · 약 1년 전

React Server Component와 Streaming으로 웹 성능 극대화하기: Next.js 실전 가이드

Next.jsPerformanceReact
크리에이트립 로고

크리에이트립

2025-05-24 · 약 1년 전

XState 도입기: 복잡한 여행 플랜 상태 관리를 단순화한 방법

FrontendReact
TOAST UI 로고

TOAST UI

2025-05-02 · 1년 이상 전

월간 크롬 이슈 리포트 2025년 4월호

프런트엔드 개발에 가장 많은 영향을 주는 크롬 브라우저의 버전별 변경 예정 항목을 정리 및 공유한다. (2025년 4월호)

FrontendPerformanceReact

리멤버

2025-04-16 · 1년 이상 전

코드 한 줄로 경험하는 React 동시성의 마법

FrontendJavaScriptReact
11번가 로고

11번가

2025-04-15 · 1년 이상 전

11키티즈 게임에서 XState를 선택한 이유

11키티즈 게임에서 XState를 선택한 이유 11키티즈 게임에서는 주요 비즈니스 로직 구현을 위하여 XState를 선택했다. 일반적인 프론트엔드 개발에서는 React의 useState, Redux, Zustand 등을 사용하여 상태를 관리하지만, 게임이라는 특수한 환경에서는 상태 전환의 명확성과 개발 생산성 및 품질 관리가 중요하다고 판단했기 때문이다. 이 글에서는 왜 웹 어플리케이션 게임 개발에서 XState가 효과적인지, 크게 두 가지 측

FrontendPerformanceReactTools
모두싸인 로고

모두싸인

2025-02-12 · 1년 이상 전

SPA 환경에서의 버전 업데이트를 위한 모두싸인의 최신 버전 업데이트 기능 구현기

CI/CDFrontendReact

넥스트리

2024-11-29 · 1년 이상 전

React Router

While developing with React, a framework for Single Page Applications (SPA), I had a question. React detects changes on a single page and updates the Virtual DOM, rendering only the parts that have changed. So I wondered, "Are all pages the same sinc

FrontendJavaScriptReact

넥스트리

2024-11-29 · 1년 이상 전

React State

1. What is State?In React, state is a way to manage data that can change over time, and it is specific to each component. Unlike props (which are immutable and passed down from parent to child), state allows a component to maintain and update its own

FrontendJavaScriptReact

넥스트리

2024-11-29 · 1년 이상 전

React Props

PropsIn React, the flow of data is unidirectional: it flows from the parent (higher-level) component to the child (lower-level) component. In this flow, data passed from the parent to the child is conveyed through an object called props, which is sho

FrontendJavaScriptReact

넥스트리

2024-11-29 · 1년 이상 전

React Component & Lifecycle

A ReactElement is an implementation of the concept called the Virtual DOM (VDOM). The VDOM is a JavaScript object that exists in memory and can be created using the React.createElement function. The elements created by this function are just regular

FrontendJavaScriptReact

넥스트리

2024-11-27 · 1년 이상 전

React Material-UI

React is an open-source JavaScript library used for creating user interfaces.There are various React-based UI libraries that help in building beautiful user interfaces. Some of the most popular ones include Material-UI, Semantic-UI-React, Ant-Design,

JavaScriptReactUX/UI

넥스트리

2024-11-25 · 1년 이상 전

React Fragment

1. React Component Element Renderingclass CorrectComponent extends React.Component { // React Component is rendering only a single element. render() { return ( <h4> Hello React </h4> ) } } class WrongComponent extends React.Component { // React Compo

FrontendReact

넥스트리

2024-11-25 · 1년 이상 전

React Testing

What is Unit Testing?Unit testing refers to testing an application by separating it into the smallest possible units and testing them individually. Through unit tests performed on the smallest units (such as functions or methods), you can predict and

ReactTesting

넥스트리

2024-11-25 · 1년 이상 전

Hooks

There are two types of components in React. Class Component – This is the method of creating a component using a class. It is the default way of building components in React. The reason why Class Components are commonly used is because they allow acc

FrontendReact
12345

페이지 2 / 6 (총 92개)