일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- error
- concept
- CLASS
- middleware
- useState
- bitcoin
- node.js
- blockchain
- 삶
- tailwindcss
- CSS
- graphQL
- SSR
- REACT
- solidity
- web
- nextJS
- Props
- express.js
- Ethereum
- hardhat
- Interface
- 기준
- Redux
- HTML
- evm
- built in object
- typeScript
- API
- JavaScript
- Today
- Total
목록Backend (28)
ReasonJun
In the context of Node.js, "bindings" typically refer to native bindings or C/C++ addons. These are modules that allow you to integrate existing C or C++ code into your Node.js applications. This capability is essential when you need to interact with low-level system libraries, hardware, or existing C/C++ codebases from your Node.js application. Here's an overview of Node.js bindings: Native Add..
In Node.js, the relationship between V8 and libuv is crucial to understand how Node.js achieves its asynchronous, event-driven, and non-blocking I/O capabilities. Let's break down their roles and how they work together: V8 JavaScript Engine: V8 is an open-source JavaScript engine developed by Google. It's responsible for executing JavaScript code in the Node.js environment. V8 compiles JavaScrip..
libuv is a multi-platform support library primarily developed for use by Node.js. It provides an abstraction layer for asynchronous I/O operations, networking, concurrency control, and other essential functionality required by event-driven, non-blocking applications like Node.js. Here are some key points about libuv: Cross-Platform: One of the primary goals of libuv is to provide a consistent AP..
Node.js is an open-source, cross-platform JavaScript runtime environment that allows you to run JavaScript code outside of a web browser. It was created by Ryan Dahl and was first released in 2009. Node.js is built on the V8 JavaScript engine, which is the same engine that powers the Google Chrome web browser. Here are some key aspects and features of Node.js: Server-Side JavaScript: Node.js is ..
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..