일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- CLASS
- graphQL
- API
- built in object
- node.js
- REACT
- 삶
- useState
- 기준
- Props
- middleware
- blockchain
- HTML
- web
- typeScript
- evm
- bitcoin
- Redux
- JavaScript
- CSS
- error
- SSR
- express.js
- Ethereum
- hardhat
- Interface
- concept
- tailwindcss
- nextJS
- solidity
- Today
- Total
목록전체 글 (373)
ReasonJun
CORS stands for Cross-Origin Resource Sharing. It is a mechanism that allows web browsers to make cross-origin HTTP requests securely. In the context of web development, an origin is defined as the combination of the protocol (e.g., HTTP or HTTPS), domain, and port from which a resource is being requested. By default, web browsers enforce a security policy called the Same-Origin Policy, which re..
SSL, which stands for Secure Sockets Layer, is a cryptographic protocol designed to provide secure communication over a computer network. It ensures that the data transmitted between a client (such as a web browser) and a server is encrypted and protected from unauthorized access or tampering. SSL was developed by Netscape Communications in the mid-1990s and has become an industry standard for s..
Firebase is a comprehensive suite of cloud-based development tools and services offered by Google. It provides a range of features and functionalities that help developers build and scale web and mobile applications quickly and efficiently. Firebase offers a wide array of services across various areas of application development, including: Real-time Database: Firebase's Real-time Database is a N..
In React, the useRef hook is used to create a mutable reference that persists across renders. It provides a way to access and interact with DOM elements or values that may change over time without triggering a re-render of the component. The useRef hook returns a mutable ref object with a .current property. This property can hold any value and remains the same between renders. When the .current ..
In React, "debounce" refers to a technique used to delay the execution of a function or action until a certain amount of time has passed without any subsequent calls. It helps optimize performance by reducing unnecessary or frequent function invocations, particularly in scenarios like user input handling or event listeners. Debouncing is commonly used in React applications when you want to delay..
Requesting AJAX (Asynchronous JavaScript and XML) within a component refers to making asynchronous HTTP requests to a server or API directly from a component in a web application. This allows you to fetch data or interact with the server without causing a full page refresh. To perform AJAX requests within a component, you can use the built-in fetch API or popular libraries such as Axios or jQuer..
Nested routing Nested routing, also known as nested routes or nested routing hierarchy, refers to the concept of organizing routes in a hierarchical structure within a web application. It allows you to define routes that are nested inside other routes, creating a parent-child relationship between them. In nested routing, child routes are rendered within the context of their parent route. This me..

React Router Dom is a popular library in the React ecosystem that provides routing capabilities for single-page applications (SPAs). It allows developers to handle navigation and URL management within their React applications. React Router Dom is built on top of the React Router library and specifically designed for web applications. Key features and concepts of React Router Dom include: Declara..
cubic-bezier cubic-bezier is a function that allows you to create custom timing functions for CSS animations. This can be useful for creating more natural, lifelike animations. https://cubic-bezier.com/#.17,.67,.83,.67 cubic-bezier.com cubic-bezier.com background-clip background-clip is a property that specifies how the background of an element should be clipped. This can be used to create inter..
WebKit is not a feature in CSS but rather a web browser engine. It is the rendering engine used by several web browsers, including Apple's Safari and various other applications. However, CSS plays a crucial role in defining the styles and visual presentation of web content rendered by WebKit. CSS (Cascading Style Sheets) is a style sheet language used to describe the look and formatting of a doc..