Download Latest Version v20.67.0 source code.tar.gz (32.5 MB)
Email in envelope

Get an email when there's a new version of uWebSockets.js

Home / v20.63.0
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2026-04-09 517 Bytes
v20.63.0 source code.tar.gz 2026-04-09 43.3 MB
v20.63.0 source code.zip 2026-04-09 43.2 MB
Totals: 3 Items   86.5 MB 0

Faster String arguments

With research & benchmarks done by @BV-WebDev, this release introduces optimizations for methods taking JavaScript Strings. The following demo runs with 17% higher req/sec overall, entirely due to this faster String argument passing:

get('/', (res, req) => {
  res.writeHeader("Hello", "There");
  res.writeHeader("Hi", "On you");
  res.end('Hello World!');
})

This optimization applies to Node.js 24 or later and relies on the new v8::String::ValueView.

Source: README.md, updated 2026-04-09