π JavaScript implementation of QUIC, HTTP/3, QPACK & WebTransport for Node.js
β οΈ Project status: Active development.
APIs may change without notice until we reach v1.0.
Use at your own risk and please report issues!
- What is QUIC/HTTP3?
- Why is QUICO important?
- Features
- Installation
- Node.js API Compatibility
- Testing
- Roadmap
- Sponsors
- License
QUIC is the future of Internet transport protocols. Created at Google and standardized by the IETF, QUIC powers HTTP/3 and is already deployed at scale by the worldβs largest platforms. It was specifically designed to overcome the limitations of TCP and deliver a faster, smoother, and more resilient web.
Key advantages of QUIC include:
-
Eliminating bottlenecks: With TCP, data must arrive strictly in order. If a single packet is lost or delayed, all subsequent packets are blocked until it arrives β a phenomenon called head-of-line blocking. QUIC removes this bottleneck by running over UDP, so each package arrives on its own and avoids dependence on delayed pieces of data.
-
UDP efficiency: By running over UDP, QUIC bypasses decades of kernel-level constraints, enabling lightning-fast performance even on constrained devices such as smartphones, IoT hardware, or edge gateways.
-
Security by default: TLS 1.3 is built directly into the protocol. Every connection is encrypted β no exceptions, no downgrade paths.
-
Seamless mobility: Connections remain stable as devices move across networks (e.g., Wi-Fi β 4G/5G) or switch IP addresses, without breaking the session.
-
Lower latency: QUIC merges the transport and TLS handshake into fewer round-trips, significantly reducing connection setup time.
-
Smarter congestion control: Advanced congestion control algorithms (such as BBR) continuously measure bandwidth, round-trip time, and loss in real time. They dynamically adjust to real-world network conditions.
QUIC combines UDP speed, TCP reliability, mandatory TLS security, and adaptive multiplexing into one powerful transport layer.
HTTP/3 (h3 in short) is the layer on top of QUIC. This is the evolution of the webβs application layer. Instead of riding over TCP, HTTP/3 maps HTTP requests and responses directly onto QUIC streams. HTTP/3 is also himself dramatically reduces overhead and improves efficiency - thats bring faster page loads and real-time applications that scale across the modern web.
Node.js is the backbone of countless modern web applications, but it currently lacks a native QUIC implementation. Supporting QUIC inside Node.js requires deep access to TLS internals that Nodeβs existing TLS APIs donβt expose. Beyond that, QUIC demands a highly complex architecture, including intricate state machines, packet schedulers, and congestion control mechanisms.
QUICO brings this missing capability directly into the Node.js ecosystem. It is a from-scratch JavaScript implementation of QUIC, HTTP/3 and WebTransport, built without relying on OpenSSL or native code. At its core, it uses LemonTLS a pure JavaScript TLS 1.3 library, to provide the cryptographic expose that QUIC requires.
-
Pure JavaScript QUIC
Full transport layer written from scratch in JS β including Initial & 1-RTT packet handling, connection ID management, acknowledgments, and flow control. No native bindings required. -
HTTP/3
Support for control streams, request/response handling, and GOAWAY frames β the foundation of modern web transport. -
WebTransport
Unidirectional and bidirectional streams plus datagrams (RFC 9298), tested with Chrome Canary for real-world compatibility. -
QPACK Compression
Full encoder/decoder implementation with support for static, dynamic, and custom Huffman tables to reduce header overhead.
β οΈ Note: Currently implemented as server-side only. Client support is planned in the roadmap.
npm install quico
One of the core design goals of QUICO is to provide a familiar and intuitive API.
If you already know how to use Nodeβs built-in http
or https
modules, working with QUICO should feel natural.
QUICO exposes an API modeled after Nodeβs server interfaces:
createServer
works just like inhttp
/https
, accepting request and response objects.req
andres
objects follow the same semantics you already know:req.headers
,res.writeHead()
,res.end()
, etc.
import fs from 'node:fs';
import quico from 'quico';
import tls from 'lemon-tls';
const server = quico.createServer({
SNICallback: function (servername, cb) {
cb(null, tls.createSecureContext({
key: fs.readFileSync('YOUR_KEY_FILE_PATH'),
cert: fs.readFileSync('YOUR_CERT_FILE_PATH')
}));
}
}, function (req, res) {
res.writeHead(200, {
'Content-Type': 'text/html; charset=utf-8'
});
res.end('Hello World from HTTP/3 on Node.js!');
});
server.listen(4433, function () {
console.log('π QUIC server running on https://localhost:4433');
});
π For more examples, see
examples/
QUIC requires TLS 1.3 with an ECDSA certificate. RSA self-signed certificates usually fail with QUIC/HTTP3. For local development the easiest option is mkcert, which generates locally trusted ECDSA certificates automatically.
This project supports ALPN "h3"
only
(final version, not draft variants like h3-29
or h3-32
).
You must explicitly force h3 when testing.
β Launch Chrome with:
--enable-quic --quic-version=h3 --ignore-certificate-errors --origin-to-force-quic-on=localhost:4433
β Or test with Curl:
curl --http3 -vvv --trace-time --trace-ascii - https://localhost:4433 --insecure
The following roadmap reflects the current and planned status of the QUICO project.
β
= Completedβπ = In progressββ³ = Plannedββ = Not planned
Status | Item |
---|---|
β | QUIC: Initial / Handshake / 1-RTT |
β | TLS 1.3 handshake & key schedule |
β | HTTP/3: control streams & basic requests |
β | QPACK: static & dynamic table |
Status | Item | Notes |
---|---|---|
π | QPACK: Huffman encoding/decoding | Custom table support partially working |
π | WebTransport: unidirectional & bidirectional streams | Stream interface WIP |
π | HTTP/3: GOAWAY & request cancellation | Partial control flow support |
π | Integration with Node.js https -style API |
Goal: seamless compatibility |
π | Project modularization & internal refactoring | To improve maintainability |
Status | Item | Notes |
---|---|---|
β³ | QUIC: 0-RTT support | Will follow key update & early data support |
β³ | WebTransport: datagram support | Based on RFC 9298 |
β³ | QUIC: proper connection teardown | CLOSE frame, idle timeout |
β³ | QUIC: keep-alive & PING frames | For long-lived connections |
β³ | QUIC: flow control & congestion (BBR / CUBIC) | Needs metrics and simulation |
β³ | QUIC: session resumption & connection migration | For mobile/roaming support |
β³ | End-to-end test suite against Chromium | Automate using testh3 and Puppeteer |
β³ | Benchmarks, performance analysis & tuning | Resource usage, latency, throughput |
β³ | Fuzz testing and protocol robustness checks | To improve security and reliability |
β³ | Developer documentation & API reference | For better onboarding |
β³ | TypeScript typings | Type safety for IDE support |
Note: QUICO is a work-in-progress project aiming to provide a full JavaScript implementation of QUIC + HTTP/3. Community contributions are welcome!
Please β star the repo to follow progress!
QUICO is an evenings-and-weekends project.
Support development via GitHub Sponsors or simply share the project.
Apache License 2.0
Copyright Β© 2025 colocohen
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.