Add Fulmine.js server - #154
Merged
Merged
Conversation
nigrosimone
marked this pull request as ready for review
August 18, 2026 17:20
Http11Probe — Compliance Comparison
✅ Baseline PassedCompliance
Smuggling
Malformed Input
Header Normalization
Commit: 20bb54c |
nigrosimone
force-pushed
the
add-fulmine-js
branch
from
August 18, 2026 18:11
9f82f0d to
b3282e2
Compare
nigrosimone
force-pushed
the
add-fulmine-js
branch
from
August 18, 2026 18:14
b3282e2 to
aa22feb
Compare
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.




Adds Fulmine.js as a server under test. It is a
drop-in Express 5 replacement that runs on uWebSockets.js, so its HTTP parsing is µWS's rather than
node's, and the probe says something quite different about it than about Express: 128/159 here
against Express's 147/157 on the same machine, and almost every difference is in the request line
and the chunked framing.
There is no
server.jsin this directory on purpose. The package is installed under the nameexpress, so the Dockerfile copiesExpressServer/server.jsand runs it unchanged: what is probedis the same application as the Express row with only the framework behind it swapped, which is the
claim this project exists to make. It also means the two rows cannot drift apart when that file
changes.
Two things about the Dockerfile are forced by uWebSockets.js: it is installed from a git tag rather
than from the registry, so the image needs
gitand an https rewrite, and its prebuilt binary needsglibc 2.38, so the base image is
node:22-trixie-slimand not-slim.Ran locally the way the workflow does, with the container on
--network host: 128/159, 213 tests,no errors.
One note on the Sonar gate: it fails on the security rating, and what is left is the missing lock
file.
.gitignoreexcludes lock files repo-wide, so this usesnpm installwith the version pinnedexactly rather than
npm ci. Say the word and I will commit apackage-lock.jsonfor thisdirectory with an exception in
.gitignore.