packages/network/README.md
This package contains networking-related classes and utilities pertaining to the Node.js execution context.
You can see a list of the modules exported from this package in ./lib/index.ts. Here is a brief description of what's available:
agent is a HTTP/HTTPS agent with support for HTTP/HTTPS proxies and keepalive whenever possibleallowDestroy can be used to wrap a net.Server to add a .destroy() methodblocked is a utility for matching blocked globsconcatStream is a wrapper around [email protected] that makes it always yield a Bufferconnect contains utilities for making network connections, including createRetryingSocketSee the individual class files in ./lib for more information.
We currently build a CommonJS and an ESM version of this package. However, since this package is only consumed via CommonJS, we currently only build the CommonJS variant of the package.
yarn workspace @packages/network build-prod
Tests are located in ./test
To run tests:
yarn workspace @packages/network test
yarn workspace @packages/network test-watch
yarn workspace @packages/network test-debug