Skip to content

chore(deps): bump @hono/node-server from 1.19.14 to 2.0.0#1274

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/hono/node-server-2.0.0
Open

chore(deps): bump @hono/node-server from 1.19.14 to 2.0.0#1274
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/hono/node-server-2.0.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 27, 2026

Bumps @hono/node-server from 1.19.14 to 2.0.0.

Release notes

Sourced from @​hono/node-server's releases.

v2.0.0

Now, we release the second major version of the Hono Node.js adapter 🎉 🎉 🎉

The Hono Node.js adapter is now up to 2.3x faster

v2 of the Hono Node.js adapter reaches up to 2.3x the throughput of v1 — that's the peak number, measured on the body-parsing scenario of bun-http-framework-benchmark. The other scenarios (Ping, Query) get a smaller but real boost too.

Install or upgrade with:

npm i @hono/node-server@latest

v2

The Node.js adapter is going through a major version bump to v2. That said, the public API stays the same — the headline of this release is the large performance improvement described above.

What does the Node.js adapter do?

A quick refresher on what the Node.js adapter actually does — it exists so that Hono applications can run on Node.js. Hono is built on the Web Standards APIs, but you cannot serve those directly from Node.js. The adapter bridges the Web Standards APIs and the Node.js APIs, which is what lets a Hono app — and more generally a Web-Standards-style app — run on top of Node.js.

If you write the following code and run node ./index.js, a server starts up on localhost:3000. And it really is plain Node.js underneath.

import { Hono } from 'hono'
import { serve } from '@hono/node-server'
const app = new Hono()
app.get('/', (c) => c.text('Hello World!'))
serve(app)

The early performance story

The very first implementation of the Node.js adapter looked roughly like this in pseudocode:

export const getRequestListener = (fetchCallback: FetchCallback) => {
  return async (incoming: IncomingMessage, outgoing: ServerResponse) => {
    const method = incoming.method || 'GET'
    const url = `http://${incoming.headers.host}${incoming.url}`
// ...
const init = {
method: method,
headers: headerRecord,
}

</tr></table>

... (truncated)

Commits
  • 58c9355 2.0.0
  • 2d6f161 Merge pull request #316 from honojs/v2
  • 94cde95 2.0.0-rc.2
  • ef43cdd perf: replace Uint8Array lookup tables with regex in buildUrl (#345)
  • 1529e41 fix: improve Response.json() and Response.redirect() spec compliance and effi...
  • 25f1674 fix: ensure close handler is attached for Blob/ReadableStream cacheable respo...
  • 22dea22 refactor: improve handling of null body in response (#341)
  • 7d83e09 v2: perf(response,listener): Response fast-paths and responseViaCache improve...
  • 5c7d188 Merge branch 'main' into v2
  • 7503265 v2: perf(request): optimize newHeadersFromIncoming and signal fast-path (#332)
  • Additional commits viewable in compare view

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 27, 2026

Labels

The following labels could not be found: automated. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@vercel
Copy link
Copy Markdown

vercel Bot commented Apr 27, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
objectui-demo Ready Ready Preview, Comment Apr 27, 2026 8:40am
1 Skipped Deployment
Project Deployment Actions Updated (UTC)
objectui Ignored Ignored Apr 27, 2026 8:40am

Request Review

Bumps [@hono/node-server](https://github.com/honojs/node-server) from 1.19.14 to 2.0.0.
- [Release notes](https://github.com/honojs/node-server/releases)
- [Commits](honojs/node-server@v1.19.14...v2.0.0)

---
updated-dependencies:
- dependency-name: "@hono/node-server"
  dependency-version: 2.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/hono/node-server-2.0.0 branch from 921282a to 2a66853 Compare April 27, 2026 08:38
@github-actions
Copy link
Copy Markdown
Contributor

⚠️ This is a major version update. Please review carefully before merging.

@github-actions
Copy link
Copy Markdown
Contributor

✅ Console Performance Budget

Metric Value Budget
Main entry (gzip) 342.2 KB 350 KB
Entry file index-jjgNPRH0.js
Status PASS

📦 Bundle Size Report

Package Size Gzipped
app-shell (index.js) 3.39KB 1.13KB
app-shell (types.js) 0.01KB 0.04KB
auth (AuthContext.js) 0.31KB 0.24KB
auth (AuthGuard.js) 1.17KB 0.53KB
auth (AuthProvider.js) 13.74KB 2.78KB
auth (ForgotPasswordForm.js) 4.91KB 1.66KB
auth (LoginForm.js) 5.10KB 1.68KB
auth (PreviewBanner.js) 0.90KB 0.50KB
auth (RegisterForm.js) 6.96KB 1.89KB
auth (SocialSignInButtons.js) 8.74KB 3.58KB
auth (UserMenu.js) 3.40KB 1.22KB
auth (createAuthClient.js) 15.32KB 3.45KB
auth (createAuthenticatedFetch.js) 2.47KB 0.95KB
auth (index.js) 1.28KB 0.55KB
auth (types.js) 0.59KB 0.35KB
auth (useAuth.js) 3.56KB 0.73KB
collaboration (CommentThread.js) 18.38KB 4.49KB
collaboration (LiveCursors.js) 3.17KB 1.27KB
collaboration (PresenceAvatars.js) 3.65KB 1.42KB
collaboration (index.js) 1.16KB 0.50KB
collaboration (useCommentSearch.js) 1.98KB 0.88KB
collaboration (useConflictResolution.js) 7.75KB 1.86KB
collaboration (useMentionNotifications.js) 1.81KB 0.68KB
collaboration (usePresence.js) 6.33KB 1.84KB
collaboration (useRealtimeSubscription.js) 7.91KB 2.01KB
components (index.js) 1982.97KB 465.50KB
core (index.js) 1.29KB 0.51KB
create-plugin (index.js) 10.13KB 3.17KB
data-objectstack (index.js) 46.96KB 11.67KB
fields (LookupField-B6MOSQVJ.js) 30.75KB 8.34KB
fields (index.js) 74.79KB 15.84KB
fields (rolldown-runtime-CAFD8bLK.js) 0.24KB 0.24KB
fields (useFieldTranslation-Bv3oUVgb.js) 0.26KB 0.21KB
i18n (i18n.js) 2.03KB 0.77KB
i18n (index.js) 1.99KB 0.79KB
i18n (provider.js) 4.63KB 1.47KB
i18n (useObjectLabel.js) 7.92KB 2.45KB
i18n (useSafeTranslation.js) 1.63KB 0.57KB
layout (index.js) 88.06KB 24.91KB
mobile (MobileProvider.js) 0.92KB 0.49KB
mobile (ResponsiveContainer.js) 0.94KB 0.38KB
mobile (breakpoints.js) 1.51KB 0.70KB
mobile (index.js) 1.19KB 0.53KB
mobile (pwa.js) 0.97KB 0.49KB
mobile (serviceWorker.js) 1.48KB 0.62KB
mobile (useBreakpoint.js) 1.54KB 0.65KB
mobile (useGesture.js) 4.42KB 1.27KB
mobile (usePullToRefresh.js) 2.53KB 0.85KB
mobile (useResponsive.js) 0.71KB 0.42KB
mobile (useResponsiveConfig.js) 1.36KB 0.63KB
mobile (useSpecGesture.js) 1.77KB 0.77KB
mobile (useTouchTarget.js) 1.01KB 0.54KB
permissions (PermissionContext.js) 0.31KB 0.25KB
permissions (PermissionGuard.js) 0.89KB 0.45KB
permissions (PermissionProvider.js) 3.11KB 0.87KB
permissions (evaluator.js) 4.00KB 1.23KB
permissions (index.js) 0.85KB 0.40KB
permissions (store.js) 0.91KB 0.42KB
permissions (useFieldPermissions.js) 1.28KB 0.52KB
permissions (usePermissions.js) 0.99KB 0.49KB
plugin-aggrid (AddressField-DSeinCTI.js) 2.89KB 0.83KB
plugin-aggrid (AgGridImpl-DJWnS8p3.js) 6.39KB 2.24KB
plugin-aggrid (AutoNumberField-CFvetzlu.js) 0.47KB 0.36KB
plugin-aggrid (AvatarField-CpFxJRdO.js) 2.70KB 1.16KB
plugin-aggrid (BooleanField-Chphr8cB.js) 1.28KB 0.60KB
plugin-aggrid (CodeField-DA5EKiRw.js) 0.91KB 0.55KB
plugin-aggrid (ColorField-BV3Ozx_l.js) 1.31KB 0.60KB
plugin-aggrid (CurrencyField-BXHTbR_q.js) 1.57KB 0.82KB
plugin-aggrid (DateField-DB91hfNC.js) 0.69KB 0.45KB
plugin-aggrid (DateTimeField-CMq6g9Uy.js) 0.87KB 0.50KB
plugin-aggrid (EmailField-hwuyLghp.js) 0.93KB 0.55KB
plugin-aggrid (FileField-6vmNoYlq.js) 5.72KB 2.07KB
plugin-aggrid (FormulaField-l8ZZJhGH.js) 0.69KB 0.47KB
plugin-aggrid (GeolocationField-D4TclavF.js) 4.15KB 1.50KB
plugin-aggrid (GridField-C4roWR_-.js) 2.00KB 0.78KB
plugin-aggrid (ImageField-CoAm51ai.js) 2.70KB 1.14KB
plugin-aggrid (LocationField-BxbLXZSy.js) 1.05KB 0.61KB
plugin-aggrid (LookupField-Cs0TIO_x.js) 33.90KB 8.99KB
plugin-aggrid (MasterDetailField-DGUmvg2f.js) 3.44KB 1.16KB
plugin-aggrid (NumberField-rj49Q5OP.js) 0.81KB 0.52KB
plugin-aggrid (ObjectAgGridImpl-CNlxkoGa.js) 726.59KB 183.35KB
plugin-aggrid (ObjectField-ag4wfN86.js) 1.67KB 0.83KB
plugin-aggrid (PasswordField-BJboeBJY.js) 1.93KB 0.96KB
plugin-aggrid (PercentField-7vXuHuRt.js) 1.89KB 0.90KB
plugin-aggrid (PhoneField-BZ_tc91H.js) 0.92KB 0.56KB
plugin-aggrid (QRCodeField-C6uFsbKO.js) 3.32KB 1.26KB
plugin-aggrid (RatingField-B2momIna.js) 2.09KB 0.95KB
plugin-aggrid (RichTextField-BfaggG4c.js) 1.24KB 0.65KB
plugin-aggrid (SelectField-BksSiQLk.js) 1.18KB 0.62KB
plugin-aggrid (SignatureField-DUgoK09r.js) 3.19KB 1.31KB
plugin-aggrid (SliderField-DrggtBSX.js) 1.16KB 0.57KB
plugin-aggrid (SummaryField-BGLmsOUW.js) 0.65KB 0.46KB
plugin-aggrid (TextAreaField-BelgcRBc.js) 1.17KB 0.66KB
plugin-aggrid (TextField-CT8YkE1I.js) 0.95KB 0.51KB
plugin-aggrid (TimeField-DxSkntqI.js) 0.66KB 0.43KB
plugin-aggrid (UrlField-BrMh5Ssp.js) 1.09KB 0.59KB
plugin-aggrid (UserField-Npo5nX7J.js) 2.67KB 0.99KB
plugin-aggrid (VectorField-C8cpoJ7Y.js) 0.97KB 0.53KB
plugin-aggrid (createLucideIcon-C_5JZ35b.js) 1.72KB 0.93KB
plugin-aggrid (image-DmzU2ETO.js) 0.36KB 0.26KB
plugin-aggrid (index.js) 10.33KB 2.43KB
plugin-aggrid (jsx-runtime-CXSCp6pT.js) 7.25KB 2.66KB
plugin-aggrid (plus-bvZ2f9T_.js) 0.19KB 0.19KB
plugin-aggrid (rolldown-runtime-CkxV0rQ3.js) 0.77KB 0.50KB
plugin-aggrid (upload-BdzwEMeV.js) 0.29KB 0.23KB
plugin-aggrid (useFieldTranslation-ByriUjeV.js) 9.53KB 3.69KB
plugin-aggrid (x-98xe-fYG.js) 0.19KB 0.19KB
plugin-ai (index.js) 24.22KB 6.45KB
plugin-calendar (index.js) 44.96KB 12.96KB
plugin-charts (AdvancedChartImpl-D5KbBVKU.js) 118.19KB 24.21KB
plugin-charts (BarChart-BQS4sYHd.js) 523.60KB 126.89KB
plugin-charts (ChartImpl-BaXisyXJ.js) 3.62KB 1.16KB
plugin-charts (index.js) 12.70KB 4.07KB
plugin-charts (jsx-runtime-Caia9pQX.js) 8.41KB 3.10KB
plugin-chatbot (index.js) 1196.24KB 341.20KB
plugin-dashboard (index.js) 158.65KB 38.77KB
plugin-designer (index.js) 254.72KB 50.23KB
plugin-detail (AddressField-lSfZ-K3N.js) 2.71KB 0.81KB
plugin-detail (AutoNumberField-CvWrIW8t.js) 0.46KB 0.34KB
plugin-detail (AvatarField-B2Tze9oa.js) 2.45KB 1.11KB
plugin-detail (BooleanField-vkWKh7hW.js) 1.19KB 0.57KB
plugin-detail (CodeField-DyK3UY1-.js) 0.85KB 0.52KB
plugin-detail (ColorField-CLmBbNCf.js) 1.24KB 0.58KB
plugin-detail (CurrencyField-C-XEzhX9.js) 1.51KB 0.80KB
plugin-detail (DateField-ChTesYvq.js) 0.65KB 0.42KB
plugin-detail (DateTimeField-rFTdj7eb.js) 0.83KB 0.47KB
plugin-detail (EmailField-CX8US9Nq.js) 0.87KB 0.52KB
plugin-detail (FileField-CpqWxhq0.js) 5.17KB 1.91KB
plugin-detail (FormulaField-DELdfdTa.js) 0.67KB 0.46KB
plugin-detail (GeolocationField-BJ0YwL9f.js) 3.36KB 1.24KB
plugin-detail (GridField-CYOQGKl8.js) 1.88KB 0.76KB
plugin-detail (ImageField-37Ue4mnP.js) 2.50KB 1.10KB
plugin-detail (LocationField-zkPrwshx.js) 1.02KB 0.59KB
plugin-detail (LookupField-CH-xyqeH.js) 30.40KB 8.24KB
plugin-detail (MasterDetailField-BugudQya.js) 2.95KB 1.00KB
plugin-detail (NumberField-Cvzwu0_C.js) 0.77KB 0.49KB
plugin-detail (ObjectField-BgiYGnbX.js) 1.62KB 0.81KB
plugin-detail (PasswordField-BQFvQ2QK.js) 1.17KB 0.67KB
plugin-detail (PercentField-BhxWwTAB.js) 1.81KB 0.87KB
plugin-detail (PhoneField-DQvUi6DN.js) 0.87KB 0.52KB
plugin-detail (QRCodeField-vpkvAy1i.js) 2.20KB 0.94KB
plugin-detail (RatingField-6VmyY-5U.js) 1.61KB 0.70KB
plugin-detail (RichTextField-Cx5Oszsd.js) 1.17KB 0.63KB
plugin-detail (SelectField-CsRL3T2z.js) 1.07KB 0.59KB
plugin-detail (SignatureField-9fxmyyx7.js) 2.86KB 1.16KB
plugin-detail (SliderField-Gn4sHwBW.js) 1.09KB 0.54KB
plugin-detail (SummaryField-C7bFBrLU.js) 0.63KB 0.45KB
plugin-detail (TextAreaField-CMZ2ZJb1.js) 1.11KB 0.63KB
plugin-detail (TextField-uS7RiNPF.js) 0.89KB 0.48KB
plugin-detail (TimeField-DnmQu2YT.js) 0.62KB 0.40KB
plugin-detail (UrlField-CgFvNBkp.js) 1.03KB 0.56KB
plugin-detail (UserField-D4eFyvQ0.js) 2.48KB 0.96KB
plugin-detail (VectorField-CN_xc88Y.js) 0.93KB 0.52KB
plugin-detail (index.js) 137.59KB 30.60KB
plugin-detail (rolldown-runtime-DnwLefa7.js) 1.35KB 0.75KB
plugin-detail (src-jDyl-wW7.js) 1685.34KB 391.60KB
plugin-detail (useFieldTranslation-C65RTj8R.js) 0.25KB 0.20KB
plugin-editor (MonacoImpl-CWQ6eT06.js) 17.97KB 5.53KB
plugin-editor (index.js) 1.61KB 0.74KB
plugin-editor (jsx-runtime-hW70xvt7.js) 7.64KB 2.81KB
plugin-form (index.js) 61.31KB 13.90KB
plugin-gantt (index.js) 215.47KB 52.74KB
plugin-grid (index.js) 102.92KB 27.89KB
plugin-kanban (KanbanEnhanced-Do9ZB1Mh.js) 30.38KB 9.00KB
plugin-kanban (KanbanImpl-BdocXM5T.js) 13.33KB 4.08KB
plugin-kanban (chevron-down-C0JUlGjk.js) 0.15KB 0.18KB
plugin-kanban (index.js) 18.55KB 5.80KB
plugin-kanban (plus-CHsXVJSY.js) 9.32KB 3.58KB
plugin-kanban (sortable.esm-LJG1TjKd.js) 59.36KB 17.43KB
plugin-list (index.js) 1757.71KB 407.99KB
plugin-map (chunk-D8eiyYIV.js) 1.19KB 0.68KB
plugin-map (index.js) 123.69KB 30.35KB
plugin-map (maplibre-gl-D8guyJSV.js) 1333.79KB 297.27KB
plugin-markdown (MarkdownImpl-wVg1IIeS.js) 220.68KB 53.61KB
plugin-markdown (index.js) 1.04KB 0.58KB
plugin-markdown (jsx-runtime-DW-7Xb_Z.js) 8.40KB 3.10KB
plugin-report (index.js) 70.39KB 13.98KB
plugin-timeline (index.js) 99.94KB 24.18KB
plugin-view (index.js) 126.86KB 25.28KB
plugin-workflow (index.js) 81.19KB 17.07KB
providers (DataSourceProvider.js) 0.75KB 0.39KB
providers (MetadataProvider.js) 1.37KB 0.59KB
providers (ThemeProvider.js) 1.55KB 0.67KB
providers (index.js) 0.29KB 0.17KB
providers (types.js) 0.01KB 0.04KB
react (LazyPluginLoader.js) 3.77KB 1.33KB
react (SchemaRenderer.js) 9.07KB 2.83KB
react (index.js) 0.76KB 0.42KB
tenant (TenantContext.js) 0.31KB 0.25KB
tenant (TenantGuard.js) 1.04KB 0.43KB
tenant (TenantProvider.js) 2.76KB 0.98KB
tenant (TenantScopedQuery.js) 0.77KB 0.44KB
tenant (index.js) 0.75KB 0.38KB
tenant (resolver.js) 2.64KB 0.76KB
tenant (useTenant.js) 0.50KB 0.32KB
tenant (useTenantBranding.js) 0.62KB 0.39KB
types (ai.js) 0.20KB 0.17KB
types (api-types.js) 0.20KB 0.18KB
types (app.js) 2.87KB 0.99KB
types (base.js) 0.20KB 0.18KB
types (blocks.js) 0.20KB 0.18KB
types (complex.js) 0.20KB 0.18KB
types (crud.js) 0.20KB 0.18KB
types (data-display.js) 0.20KB 0.18KB
types (data-protocol.js) 0.20KB 0.19KB
types (data.js) 0.20KB 0.18KB
types (designer.js) 0.74KB 0.39KB
types (disclosure.js) 0.20KB 0.18KB
types (feedback.js) 0.20KB 0.18KB
types (field-types.js) 0.20KB 0.18KB
types (form.js) 0.20KB 0.18KB
types (index.js) 1.25KB 0.58KB
types (layout.js) 0.20KB 0.18KB
types (mobile.js) 0.20KB 0.18KB
types (navigation.js) 0.20KB 0.18KB
types (objectql.js) 0.20KB 0.18KB
types (overlay.js) 0.20KB 0.18KB
types (permissions.js) 0.20KB 0.18KB
types (plugin-scope.js) 0.20KB 0.18KB
types (record-components.js) 0.20KB 0.19KB
types (registry.js) 0.20KB 0.18KB
types (reports.js) 0.20KB 0.18KB
types (tenant.js) 0.20KB 0.18KB
types (theme.js) 0.20KB 0.18KB
types (ui-action.js) 0.20KB 0.18KB
types (views.js) 0.20KB 0.18KB
types (widget.js) 0.20KB 0.18KB
types (workflow.js) 0.20KB 0.18KB

Size Limits

  • ✅ Core packages should be < 50KB gzipped
  • ✅ Component packages should be < 100KB gzipped
  • ⚠️ Plugin packages should be < 150KB gzipped

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants