You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: buffers-and-streams/buffers.md
+50-1Lines changed: 50 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,55 @@ url: buffers
6
6
7
7
## Buffers
8
8
9
-
### Usage
9
+
Node's `Buffer` class enables working with binary data in Javascript. A buffer is allows a programme to store data temporarily outside the V8 engine's stack.
10
+
11
+
Though not entirely accurate we can think of a buffer as an array of bytes, each byte is represented by a hexadecimal digit.
10
12
11
13
The Node `Buffer` class is a global class and therefore does not need to be imported into a module.
0 commit comments