Skip to content
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

Update dependencies list WIP #2612

Merged
merged 5 commits into from
Oct 14, 2019
Merged
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
8 changes: 4 additions & 4 deletions locale/en/docs/meta/topics/dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ There are several dependencies that Node.js relies on to work the way it does.
- [Libraries](#libraries)
- [V8](#v8)
- [libuv](#libuv)
- [http-parser](#http-parser)
- [llhttp](#llhttp)
- [c-ares](#c-ares)
- [OpenSSL](#openssl)
- [zlib](#zlib)
Expand Down Expand Up @@ -39,13 +39,13 @@ asynchronously at the operating system level.

- [Documentation](http://docs.libuv.org/)

### http-parser
### llhttp

HTTP parsing is handled by a lightweight C library called http-parser. It is
HTTP parsing is handled by a lightweight C library called llhttp. It is
MylesBorins marked this conversation as resolved.
Show resolved Hide resolved
designed to not make any syscalls or allocations, so it has a very small
per-request memory footprint.

- [Documentation](https://github.com/joyent/http-parser/)
- [Documentation](https://github.com/nodejs/llhttp/)

### c-ares

Expand Down