본문 바로가기

전체 글

(16)
What is JavaScript Library? JavaScript library A JavaScript library is a collection of pre-written JavaScript code that allows developers to easily add common functionality to their projects without having to write it from scratch. These libraries can include things like: Commonly used utility functions and objects Cross-browser compatibility shims DOM manipulation and traversal Animation and transition effects Event handl..
리액트가 뭘까? 리액트 알고 설치하기 인트로 앞 글에도 말했듯이, 자바스크립트를 더 효율적으로 쓰기 위한 여러 프레임워크가 존재한다. 그 중에 가장 인기있는 리액트에 대해 글을 써보려고 한다. (물론 나도 리액트로 간단한 작업을 몇 번 해봤다.) 리액트는 UI를 구축하기 위한 자바스크립트 라이브러리이다. 페이스북이 개발하였고, 현재 웹 애플리케이션 개발에서 가장 인기있는 프레임워크이다. 리액트는 개발자들이 재사용 가능한 UI 구성 요소를 구축할 수 있게 하여, 해당 구성 요소의 상태를 일관되고 효율적인 방식으로 관리할 수 있게 해준다. 리액트의 특징: Component and State 리액트의 핵심 개념은 UI 구축하기 위한 “컴포넌트Component"의 사용이다. 컴포넌트는 버튼이나 인풋박스 등 인터페이스의 특정 요소를 나타내는 코드 조..
Getting Started with React the most popular JavaScript Framework. Intro React is a JavaScript library for building user interfaces. It was developed and is maintained by Facebook, and is now widely used in the development of web applications. React allows developers to build reusable UI components and manage the state of those components in a consistent and efficient way. Main The core concept behind React is the use of "components" to build the user interface..