Skip to content

start of buffers and streams docs #16

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix link
  • Loading branch information
jjmax75 committed May 3, 2021
commit 2a57b37e2d23022a2c36097138527b7a1fce89b2
4 changes: 2 additions & 2 deletions buffers-and-streams/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ The Node.js APIS [Buffer](https://nodejs.org/docs/latest-v10.x/api/buffer.html)

The Node.js Buffer class implements buffers which are fixed size chunks of memory outside the V8 heap. Buffers are used to deal with binary data when dealing with TCP streams and reading/writing to the file system.

[Buffers in depth](./buffers.md)
[Buffers in depth](/buffers)

### Stream

The Node.js Stream module provides an API for working with streaming data. Streams are a fundamental concept in, and are prevalent throughout applications built on, Node. Streams are an efficient way to handle sending and receiving data particularly for large or indeterminate amounts of data.

[Streams in depth](./streams.md)
[Streams in depth](/streams)

## Working with Buffers and Streams

Expand Down