Node.js는
1. built on Chrome's V8 JS engine
2. Asynchronous event-driven
3. Designed to build scalable network applications
4.
-서버 사이드 개발에 사용되는 소프트웨어 플랫폼이다.
-자바스크립트 엔진 V8으로 빌드된 자바스크립트 런타임이다.
-Non blocking I/O, 단일 스레드, 이벤트 기반(이벤트 루프)
-내장 HTTP 서버 라이브러리를 포함한다
JavaScript Runtime이다.
A software platform that is used to build scalable network applications. Node.js uses JavaScript as its scripting language, and achieves high throughput via non-blocking I/O and a single-threaded event loop. See nodejs.org. Usage note: Initially, “Node.js,” thereafter “Node”.
'Node.js' 카테고리의 다른 글
Module System (0) | 2022.09.13 |
---|---|
[Web Server] Express (0) | 2022.08.15 |
[Web Server] CORS (0) | 2022.08.14 |
[Web Server] HTTP Transaction (0) | 2022.08.11 |