Overview
Netty is an asynchronous event-driven network application framework for building high-performance protocol servers and clients in Java. The 4.2 line combines channels and handler pipelines with codecs, TLS, HTTP/2, HTTP/3, and optional native transports. The latest release checked on September 17, 2026 is 4.2.18.Final.
Features and best fit
Based on official documentation; not hands-on tested · Content checked:
Build protocol pipelines from event loops, channels, and handlers
Netty is an event-driven non-blocking I/O framework where client/server bootstraps, channels, and handler pipelines compose protocol processing. It is not an HTTP-only server: it is a foundation for TCP/UDP protocols, gateways, proxies, and custom network services.
Use HTTP/2, HTTP/3, TLS, and native transports within the same modular framework
Netty 4.2 requires Java 8 or newer, while the optional io_uring native transport requires Java 9 or newer. The repository separates codecs, TLS, QUIC/HTTP3, and native transports into modules so applications can select the Maven artifacts they actually need.
For Java services that need fine control over high-connection networking and custom protocols
Netty fits systems that need to control connections, buffers, codecs, and event loops below the level of an HTTP application framework. It does not provide Servlet lifecycle or application routing by itself, so higher protocol and application layers remain your responsibility.
4.2.18.Final contains substantial security hardening; regression-test existing traffic
The 4.2.18.Final release strengthens validation and resource limits across multiple protocols, and its release notes warn that previously accepted workloads may now be rejected. QUIC configurations with hostname verification also face stricter trust-manager requirements. Treat this as an upgrade that needs protocol-level regression testing, not just a dependency bump.
Sources: [4]
Official sources
- [1]netty/netty — GitHub repository metadata(2026-09-17)
- [2]Netty — README (4.2 branch)(2026-09-17)
- [3]Netty — pom.xml (4.2 branch)(2026-09-17)
- [4]Netty 4.2.18.Final release(2026-09-17)
Supplemental curator note
Treat Netty as a lower-level networking framework for building protocol servers and clients, not as a Servlet container such as Jetty.
Try it in 3 steps
- 1
Get the source
git clone --depth 1 https://github.com/netty/netty.git - 2
Enter the repository
cd netty - 3
Check the official steps
Continue with the commands in the README Installation, Quick Start, or Getting Started section.
find . -maxdepth 1 -iname 'README*' -exec sed -n '1,220p' {} \; -quit
Growth
Growth trends · Last 30 days
35,061 Stars
Trend data is still being collected.
Development activity
Last 90 days · weekly
- Commits (last 30 days)
- 83
- Open PRs
- 87
Development activity is still being collected.
Built with
Categories and tags
GitHub data
GitHub dataView detailed GitHub data
- Stars
- 35,061
- Forks
- 16,269
- Watchers
- 1,668
- Open issues
- 587
- Primary language
- Java
- License
- Apache-2.0
- Repository last updated
- Sep 17, 2026
Related information
Write a related articleShare a guide or use case for this OSS in Markdown. Articles are published after administrator approval.
Explore next
- React250,526 Stars
A JavaScript library for building web and native user interfaces from declarative components.
JavaScript - Visual Studio Code (Code - OSS)192,608 Stars
The MIT-licensed Code - OSS repository that forms the open foundation of Visual Studio Code.
TypeScript - Flutter178,980 Stars
A BSD-3-Clause cross-platform SDK for building mobile, web, and desktop UIs from a Dart codebase.
Dart - Bootstrap174,828 Stars
A responsive, mobile-first web framework built from CSS and JavaScript grids, utilities, and components.
MDX - LangChain146,506 Stars
A Python framework that connects models, tools, retrieval systems, and other components for LLM applications and agents.
Python
Report incorrect information
Tell us if any listing information is incorrect or outdated.