Skip to content

Commit 5a81c71

Browse files
committed
start of buffers and streams docs
1 parent 5ec49e7 commit 5a81c71

File tree

7 files changed

+45
-6
lines changed

7 files changed

+45
-6
lines changed

buffers-and-streams/buffers.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: default
3+
title: Buffers in depth
4+
url: buffers
5+
---
6+
7+
## Buffers

buffers-and-streams/connecting-streams.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

buffers-and-streams/incremental-processing.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

buffers-and-streams/index.md

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,35 @@
11
---
2-
layout: default.njk
2+
layout: default
33
title: Buffers and Streams
4+
url: buffers-and-streams
45
---
56

6-
I've seen things you people wouldn't believe. Attack ships on fire off the shoulder of Orion. I watched C-beams glitter in the dark near the Tannhäuser Gate. All those moments will be lost in time, like buffers and streams.
7+
The Node Application Developer Certification exam section for Buffers and Streams is worth 11% of the total and is broken into the following sections.
8+
9+
The topics that are covered include:
10+
11+
- Node.js Buffer API’s
12+
- Incremental Processing
13+
- Transforming Data
14+
- Connecting Streams
15+
16+
## Buffers and Streams Overview
17+
18+
[Buffer](https://nodejs.org/docs/latest-v10.x/api/buffer.html) and [Stream](https://nodejs.org/docs/latest-v10.x/api/stream.html) are fundamentally seperate topics yet are intrinsically linked. This section will cover how these APIs work individually and with each other.
19+
20+
### Buffer
21+
22+
A buffer is a...
23+
24+
[Buffers in depth](./buffers.md)
25+
26+
### Stream
27+
28+
A Stream is a....
29+
30+
[Streams in depth](./streams.md)
31+
32+
## Further Reading
33+
MPJ intro to Streams - YouTube
34+
35+
Net Ninja intro to Buffers and Streams - YouTube

buffers-and-streams/nodejs-buffer-apis.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

buffers-and-streams/streams.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: default
3+
title: Streams in depth
4+
url: streams
5+
---
6+
7+
## Streams

buffers-and-streams/transforming-data.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)