Socket
Socket
Sign inDemoInstall

bandwidth-throttle-stream

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bandwidth-throttle-stream - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

4

dist/BandwidthThrottleGroup.js

@@ -125,3 +125,3 @@ "use strict";

const bytesPerRequestPerSecond = getPartitionedIntegerPartAtIndex_1.default(this.config.bytesPerSecond, this.inFlightRequests.length, rotatedIndex);
const bytesPerRequestPerTick = getPartitionedIntegerPartAtIndex_1.default(bytesPerRequestPerSecond, this.config.resolutionHz, this.tickIndex);
const bytesPerRequestPerTick = getPartitionedIntegerPartAtIndex_1.default(bytesPerRequestPerSecond, this.config.ticksPerSecond, this.tickIndex);
bandwidthThrottle.process(bytesPerRequestPerTick);

@@ -135,3 +135,3 @@ if (this.inFlightRequests.length < currentInFlightRequestsCount) {

// the desired resolution
if (this.tickIndex === this.config.resolutionHz) {
if (this.tickIndex === this.config.ticksPerSecond) {
this.tickIndex = 0;

@@ -138,0 +138,0 @@ this.secondIndex++;

import IConfig from './Interfaces/IConfig';
declare class Config implements IConfig {
bytesPerSecond: number;
resolutionHz: number;
ticksPerSecond: number;
get isThrottled(): boolean;

@@ -6,0 +6,0 @@ get tickDurationMs(): number;

@@ -6,3 +6,3 @@ "use strict";

this.bytesPerSecond = Infinity;
this.resolutionHz = 40;
this.ticksPerSecond = 40;
}

@@ -13,3 +13,3 @@ get isThrottled() {

get tickDurationMs() {
return 1000 / this.resolutionHz;
return 1000 / this.ticksPerSecond;
}

@@ -16,0 +16,0 @@ }

@@ -5,2 +5,4 @@ interface IConfig {

* throttle, each second.
*
* @default Infinity
*/

@@ -10,9 +12,14 @@ bytesPerSecond?: number;

* Defines how frequently the processing of bytes should be
* distributed across each second.
* distributed across each second. Each time the internal
* scheduler "ticks", data will be processed and written out.
*
* A higher resolution will ensure smoother throttling, but
* will be more expensive computationally.
* A higher value will ensure smoother throttling for requests
* that complete within a second, but will be more expensive
* computationally and will ultimately be constrained by the
* performance of the JavaScript runtime.
*
* @default 40
*/
resolutionHz?: number;
ticksPerSecond?: number;
}
export default IConfig;
{
"name": "bandwidth-throttle-stream",
"version": "0.1.0",
"version": "0.1.1",
"description": "A Node.js transform stream for throttling bandwidth",

@@ -5,0 +5,0 @@ "author": "KunkaLabs Limited",

@@ -5,8 +5,41 @@ ![CI](https://github.com/patrickkunka/bandwidth-throttle-stream/workflows/CI/badge.svg) [![Coverage Status](https://coveralls.io/repos/github/patrickkunka/bandwidth-throttle-stream/badge.svg?branch=master)](https://coveralls.io/github/patrickkunka/bandwidth-throttle-stream?branch=master)

A Node.js transform stream for throttling bandwidth.
A Node.js [transform stream](https://nodejs.org/api/stream.html) for throttling bandwidth which distributes available bandwidth evenly between all requests in a "group", accurately simulating the effect of network conditions on simultaneous overlapping requests.
Distributes the configured bandwidth evenly between all active requests in a "group".
#### Features
- Idiomatic pipeable Node.js transform stream API
- Distributes the desired bandwidth evenly over each second
- Distributes the desired bandwidth evenly between all active requests
- Abortable requests ensure bandwidth is redistributed if a client aborts a request
#### Contents
- [Installation](#installation)
- [Usage](#usage)
- [Creating a Group](#creating-a-group)
- [Attaching Throttles](#attaching-throttles)
- [Handling Output](#handling-output)
- [Configuration Options](#configuration-options)
- [Dynamic Configuration](#dynamic-configuration)
- [Aborting Requests](#aborting-requests)
- [Destroying Requests](#destroying-requests)
## Installation
Firstly, install the package using your package manager of choice.
```
npm install bandwidth-throttle-stream
```
You may then import the `createBandwidthThrottleGroup()` factory function into your project.
```js
import {createBandwidthThrottleGroup} from 'bandwidth-throttle-stream';
```
## Usage
#### Creating a Group
We must firstly create a "bandwidth throttle group" which will be configured with a specific throughput in bytes (B) per second.
```js

@@ -20,3 +53,13 @@ import {createBandwidthThrottleGroup} from 'bandwidth-throttle-stream';

});
```
Typically we would create a single group only for a server running a simulation, which all incoming network requests to be throttled are routed through. However, we could also create multiple groups if we wanted to run multiple simulations with different configurations on a single server.
#### Attaching Throttles
Once we've created a group, we can then attach individual pipeable "throttles" to it, as requests come into our server.
The most simple integration would be to insert the throttle (via `.pipe`) between a readable stream (e.g file system readout, server-side HTTP response), and the response stream of the incoming client request to be throttled.
```js
// Attach a throttle to a group (e.g. in response to an incoming request)

@@ -29,6 +72,121 @@

request
someReadableStream
.pipe(throttle)
.pipe(response);
.pipe(someWritableStream);
```
#### Handling Output
In most cases however, we require more granular control of data output than simply piping to a writable stream (for example when throttling an HTTP request).
In these cases, we can use any of the Node.js stream events available such as `data` and `end`:
```js
someReadableStream
.pipe(throttle)
.on('data', chunk => response.write(chunk)
.on('end', () => {
// Set the response status of the HTTP request to 200
response.status(200);
// End the request
response.end();
// Destroy the throttle to release it from the group
throttle.destroy();
});
```
## Configuration Options
Each bandwidth throttle group accepts an optional object of configuration options:
```js
const bandwidthThrottleGroup = createBandwidthThrottleGroup({
bytesPerSecond: 500000 // 500KB/s,
resolutionHz: 20 // aim to write output 20x per second
});
```
The following options are available.
```ts
interface IConfig {
/**
* The maximum number of bytes allowed to pass through the
* throttle, each second.
*
* @default Infinity
*/
bytesPerSecond?: number;
/**
* Defines how frequently the processing of bytes should be
* distributed across each second. Each time the internal
* scheduler "ticks", data will be processed and written out.
*
* A higher value will ensure smoother throttling for requests
* that complete within a second, but will be more expensive
* computationally and will ultimately be constrained by the
* performance of the JavaScript runtime.
*
* @default 40
*/
ticksPerSecond?: number;
}
```
## Dynamic Configuration
A group can be reconfigured at any point after creation via its `.configure()` method, which accepts the same configuration interface as the `createBandwidthThrottleGroup()` factory.
```js
// Create a group with no throttling
const bandwidthThrottleGroup = createBandwidthThrottleGroup();
// ... after some configuration event:
bandwidthThrottleGroup.configure({
bytesPerSecond: 6000000
})
```
## Aborting Requests
When a client aborts a requests, its important that we also abort the throttle, ensuring the group can re-balance available bandwidth correctly.
```js
const throttle = bandwidthThrottleGroup.createBandwidthThrottle();
request.on('aborted', () => {
// Client aborted request
throttle.abort();
});
someReadableStream
.pipe(throttle)
.on('data', chunk => response.write(chunk)
.on('end', () => {
// Set the response status of the HTTP request to 200
response.status(200);
// End the request
response.end();
// Destroy the throttle to release it from the group
throttle.destroy();
});
```
## Destroying Requests
To prevent memory leaks, individual throttles should be destroyed once all data for a request has been processed, and the request as ended.
This ensures the throttle instance is fully released from its parent group.
Each throttle instance exposes a `.destroy()` method for this purpose:
```js
throttle.destroy();
```

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc