Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion run/helloworld/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"author": "Google LLC",
"license": "Apache-2.0",
"dependencies": {
"express": "^4.17.1"
"express": "^5.2.1"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The specified version 5.2.1 for the express package does not exist on the public npm registry, which will cause npm install to fail.

Additionally, Express v5 is still in a pre-release stage and is not considered stable. For sample code, it's crucial to use stable, production-ready dependencies.

Please update to the latest stable version of Express v4.

Suggested change
"express": "^5.2.1"
"express": "^4.19.2"

},
"devDependencies": {
"c8": "^10.0.0",
Expand Down
Loading