일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- blockchain
- concept
- node.js
- REACT
- bitcoin
- hardhat
- express.js
- Props
- nextJS
- Interface
- JavaScript
- 기준
- evm
- CSS
- useState
- solidity
- web
- middleware
- Redux
- 삶
- typeScript
- graphQL
- error
- Ethereum
- HTML
- tailwindcss
- SSR
- API
- built in object
- CLASS
- Today
- Total
목록전체 글 (375)
ReasonJun
React Hook Form is a library that makes it easy to manage forms and validate their input in React. It provides a number of features that make form validation easier, including: Built-in validation: React Hook Form comes with a built-in validation system that can be used to validate form input. Reactive form state: React Hook Form keeps track of the form state, so you can easily update the form v..
ORM stands for Object-Relational Mapping. It is a programming technique and a software pattern that allows developers to work with relational databases using an object-oriented approach. ORM frameworks provide a level of abstraction between the database and the application, allowing developers to interact with the database using objects instead of writing raw SQL queries. The main idea behind OR..
Prisma is a modern ORM (Object-Relational Mapping) that makes it easy to interact with databases in a type-safe and consistent way. It is built on top of GraphQL, a popular API specification, and it provides a number of features that make it a powerful and flexible database solution. Some of the features of Prisma include: Type-safety: Prisma uses TypeScript to provide type-safety for your datab..
PlanetScale is a fully-managed, cloud-native database service that makes it easy to build and scale relational databases. It is built on top of PostgreSQL, a popular open-source relational database, and it provides a number of features that make it a powerful and scalable database solution. Some of the features of PlanetScale include: Horizontal scalability: PlanetScale can scale horizontally to..
lint-staged Allows you to do somethings on files in 'git staged' state https://github.com/okonet/lint-staged GitHub - okonet/lint-staged: 🚫💩 — Run linters on git staged files 🚫💩 — Run linters on git staged files. Contribute to okonet/lint-staged development by creating an account on GitHub. github.com husky Manage the definition of 'git hook' operation in '.husky' rather than '.git' file so that..
Next.js 13 is the latest version of Next.js, a React framework that makes it easy to build high-performance web applications. Next.js 13 includes a number of new features and improvements, including: New rendering strategies: Next.js 13 introduces two new rendering strategies: Static Site Generation (SSG) and Incremental Static Regeneration (ISR). These new strategies can improve the performance..
useRouter is a React Hook that provides access to the router state in your Next.js application. This can be useful for getting the current route, navigating to other routes, and handling route changes. The useRouter hook returns an object with the following properties: pathname: The current path of the route. query: The query string of the route. asPath: The path as shown in the browser includin..
Error handling is an important aspect of any web application, especially when working with Next.js. Next.js provides different ways to handle errors in development, server-side, and client-side scenarios. In this article, we will explore some of the best practices for error handling in Next.js 13. In development mode, Next.js shows an overlay that covers the webpage when there is a runtime error..
webVitalsAttribution is a Next.js configuration option that allows you to enable attribution for Web Vitals metrics. This means that you can track the origin of each Web Vitals metric, which can be helpful for debugging performance issues. https://nextjs.org/docs/app/api-reference/next-config-js/webVitalsAttribution next.config.js Options: webVitalsAttribution | Next.js Using App Router Features..

Web Vitals are a set of metrics that measure the user experience of a web page. They are designed to help developers understand how their pages are performing and identify areas where they can improve. The three core Web Vitals are: Largest Contentful Paint (LCP): This measures the time it takes for the largest contentful paint (LCP) element on a page to render. The LCP element is typically the ..