1. node Buffer 란?
- 고정된 byte 길이의 객체
- Uint8Array 클래스(unsigned int (8 bit) array)의 서브 클래스이다.
2. Byte
- ASCII 코드를 위한 단위 ( 1 byte 가 1 문자)
- 8bit 가 1 byte 로 표기 가능
- 표현 범위 0 ~ 255
3. ASCII
- American Standard Code for Information Interchange : 미국정보교환표준부호
- ASCII 표를 통하여 각 숫자에 해당하는 문자를 알 수 있다.
https://ko.wikipedia.org/wiki/ASCII
'Node js > Syntax' 카테고리의 다른 글
Standard library (0) | 2023.03.08 |
---|---|
Stream (0) | 2023.03.08 |
node convention (0) | 2023.03.08 |
npm (0) | 2023.03.08 |
module (0) | 2023.03.08 |