일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- express.js
- Props
- nextJS
- web
- Interface
- REACT
- evm
- node.js
- JavaScript
- CSS
- tailwindcss
- solidity
- API
- concept
- blockchain
- Ethereum
- graphQL
- typeScript
- SSR
- bitcoin
- error
- Redux
- 기준
- HTML
- CLASS
- useState
- middleware
- hardhat
- 삶
- built in object
- Today
- Total
목록Backend (28)
ReasonJun
Apollo is a company that provides tools and services for building GraphQL APIs and applications. Apollo's products include: Apollo Server: A GraphQL server that is easy to set up and use. Apollo Client: A GraphQL client library that makes it easy to fetch and cache data from GraphQL servers. Apollo Studio: A cloud-based platform for monitoring and debugging GraphQL APIs. Apollo Server is a power..
A resolver in GraphQL is a function that is responsible for fetching the data for a single field in a GraphQL schema. Resolvers are typically written in JavaScript, but they can be written in any language that can be executed on the server. When a client makes a GraphQL query, the resolvers for the fields in the query are called in order to fetch the data. The resolvers can fetch data from a var..

GraphQL is a query language for APIs and a runtime for fulfilling those queries with your existing data. It is a declarative language, which means that you describe what data you want, not how to get it. This makes it more efficient and flexible than traditional REST APIs. GraphQL is organized in terms of types and fields, not endpoints. This means that you can ask for exactly the data you need,..

The MVC pattern in Express.js is a software design pattern that separates an application into three interconnected parts: the model, the view, and the controller. The model is responsible for storing and retrieving data. The view is responsible for presenting the data to the user. The controller is responsible for handling user requests and updating the model. The MVC pattern is a popular choice..
Middleware in Express.js is a function that is executed before the request is routed to a specific controller or action. Middleware can be used to perform any number of tasks, such as: Logging the request and response. Validating the request data. Encrypting or decrypting the request data. Caching the request data. Generating a response. And much more. Middleware functions are chained together, ..
The res.end() and res.send() methods in Express.js are both used to send data back to the client. However, there are some key differences between the two methods. res.end() only sends the data that is passed to it. It does not set any headers or end the response. res.send() sends the data that is passed to it, and it also sets the Content-Type header to the appropriate value. It also ends the re..