Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 1.02 KB

README.md

File metadata and controls

31 lines (20 loc) · 1.02 KB

NPM version Repository package.json version MIT License Discord

http2-auto-window-size

Set HTTP/2 window size automatically based on estimated bandwidth and ping duration (RTT).

Strategy

  1. tolerable latency -> increase window size if bandwidth is high.
  2. intolerable latency -> reduce window size if bandwidth is low.

Installation

npm install http2-auto-window-size

Usage

import {setupAutoWindowSize} from 'http2-auto-window-size';

server.on('session', session => setupAutoWindowSize(session));

License

MIT License.