Skip to content
Open
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 course-02/exercises/udacity-c2-basic-server/package.json
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
"typescript": "^3.9.7"
},
"dependencies": {
"express": "^4.17.1"
"express": "^4.22.1"

Choose a reason for hiding this comment

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

medium

Upgrading express is a good move for security. To ensure type safety and consistency, it's also recommended to update the corresponding type definitions. The @types/express dependency in devDependencies is currently on version ^4.17.9. Please consider upgrading it to a more recent version compatible with express@4.22.1, such as ^4.17.21, which is the latest for the express 4.x line.

}
}