일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Interface
- Ethereum
- 기준
- CLASS
- typeScript
- API
- SSR
- hardhat
- node.js
- evm
- solidity
- concept
- Props
- error
- nextJS
- Redux
- 삶
- bitcoin
- graphQL
- express.js
- REACT
- CSS
- HTML
- middleware
- built in object
- web
- useState
- JavaScript
- tailwindcss
- blockchain
- Today
- Total
목록Frontend (231)
ReasonJun

Webpack is a static module bundler for JavaScript applications. It is made primarily for JavaScript, but it can transform front-end assets such as HTML, CSS, and images if the corresponding loaders are included. Webpack takes modules with dependencies and generates static assets representing those modules. Here are some of the benefits of using Webpack: It can bundle multiple JavaScript files in..
Zustand is a small, unopinionated state management library for React. It is based on hooks and provides a simple and intuitive API for managing state. Zustand works by creating a single store that holds all of the state for your application. You can then access and update the state using hooks. Here is an example of how to use Zustand to create a counter: import { create } from 'zustand'; const ..
PersistGate is a component provided by the Redux Persist library to delay the rendering of your app's UI until your persisted state has been retrieved and saved to Redux. This can be useful for preventing your app from rendering with incomplete or stale data. PersistGate takes two props: loading: This prop can be a React element that will be rendered while the persisted state is being loaded. pe..
persistReducer and persistStore are two functions provided by the Redux Persist library to persist Redux state to persistent storage. persistReducer takes a configuration object and a reducer as input and returns a new reducer that persists the state to the configured storage. The configuration object specifies the following: The key to use to store the state in the storage. The storage engine t..
abort is a function in Redux Toolkit that can be used to cancel an asynchronous action. Asynchronous actions are actions that perform some kind of external operation, such as fetching data from an API. abort takes two arguments: action: The action to be aborted. error: An optional error object to be passed to the rejected action. The action argument is the action that you want to cancel. The err..
createAsyncThunk is a function in Redux Toolkit that helps you write asynchronous actions in Redux. Asynchronous actions are actions that perform some kind of external operation, such as fetching data from an API. createAsyncThunk takes two arguments: actionName: The name of the action. payloadCreator: A function that takes the action's payload as an argument and returns a promise. The payloadCr..