Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compile error after updating to Express v5 #29985

Closed
1 task
json-derulo opened this issue Apr 1, 2025 · 2 comments
Closed
1 task

Compile error after updating to Express v5 #29985

json-derulo opened this issue Apr 1, 2025 · 2 comments

Comments

@json-derulo
Copy link

Command

build

Is this a regression?

  • Yes, this behavior used to work in the previous version

The previous version in which this bug was not present was

No response

Description

In a fresh Angular 19 SSR app with Server Routing, after updating to Express v5 I'm getting a compile error.

Minimal Reproduction

  • Generate a new project: ng new express5-repro --ssr --server-routing --style=css
  • In this project, update the dependencies express and @types/express to v5
  • Run ng build

Exception or Error

Application bundle generation failed.

✘ [ERROR] An error occurred while extracting routes.

Missing parameter name at 2: https://git.new/pathToRegexpError

Your Environment

Angular CLI: 19.2.5
Node: 22.14.0
Package Manager: npm 11.2.0
OS: darwin arm64

Angular: 19.2.4
... common, compiler, compiler-cli, core, forms
... platform-browser, platform-browser-dynamic, platform-server
... router

Package                         Version
---------------------------------------------------------
@angular-devkit/architect       0.1902.5
@angular-devkit/build-angular   19.2.5
@angular-devkit/core            19.2.5
@angular-devkit/schematics      19.2.5
@angular/cli                    19.2.5
@angular/ssr                    19.2.5
@schematics/angular             19.2.5
rxjs                            7.8.2
typescript                      5.7.3
zone.js                         0.15.0

Anything else relevant?

No response

@alan-agius4
Copy link
Collaborator

This is expected. The server.ts needs to be updated also to support express version 5. See: https://expressjs.com/en/guide/migrating-5.html#app.router

@alan-agius4 alan-agius4 closed this as not planned Won't fix, can't repro, duplicate, stale Apr 1, 2025
@json-derulo
Copy link
Author

For anyone facing the same error, as per #29989 it can be fixed by modifying the src/server.ts file.

Simply change the following line:

app.use('/**', (req, res, next) => {

To:

app.use((req, res, next) => {

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants