일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
- hardhat
- API
- typeScript
- Props
- middleware
- Ethereum
- concept
- blockchain
- useState
- node.js
- 삶
- error
- CSS
- REACT
- SSR
- Interface
- solidity
- HTML
- 기준
- built in object
- JavaScript
- graphQL
- web
- CLASS
- express.js
- evm
- tailwindcss
- bitcoin
- nextJS
- Redux
- Today
- Total
목록Frontend (231)
ReasonJun
Declarative syntax is a fundamental concept in React that defines how UI components are structured and rendered. In React, you describe the desired state of your user interface, and React takes care of updating the actual DOM to match that state. This declarative approach contrasts with an imperative approach, where you manually manipulate the DOM to reflect changes in the UI. In React's declara..

Virtual DOM Problem with websites made with existing html / CSS / js Whenever a DOM change occurs due to some interaction, the render tree is recreated. That is, the style of all elements is recalculated. This provides the potential for the web to slow down when there is a lot of interaction. Virtual DOM is a copy of the real DOM into memory. In React, the Virtual DOM (Document Object Model) is ..

Component-Based Architecture In React, Component-Based Architecture is a fundamental concept that forms the basis of building user interfaces (UIs). React encourages developers to break down the UI into small, reusable components, which are self-contained units responsible for their own rendering and behavior. These components can be composed together to form complex UI structures. Here are the ..
Component-Based Architecture: React follows a component-based architecture, where the UI is divided into reusable components. Components are encapsulated, self-contained units that manage their state and handle rendering. This modular approach makes it easier to build and maintain complex UIs. Virtual DOM: React uses a virtual DOM (Document Object Model) to efficiently update and render UI compo..
The tsconfig.json file is a configuration file used in TypeScript projects to specify compiler options and project settings. It allows you to customize how TypeScript compiles your code and provides control over various aspects of the compilation process. Here are some common attributes that can be configured in the tsconfig.json file: { "compilerOptions": { // ES(JS) version to be compiled- "ES..
In TypeScript, a module is a way to organize code into separate files and encapsulate its functionality. Modules allow you to define and export reusable pieces of code, such as classes, functions, interfaces, or variables, and import them in other parts of your program. TypeScript supports two main module systems: CommonJS and ECMAScript (ES) modules. CommonJS Modules: CommonJS modules are prima..