diff --git a/node.js/cds-facade.md b/node.js/cds-facade.md index 71366a97c..a24b0d0b8 100644 --- a/node.js/cds-facade.md +++ b/node.js/cds-facade.md @@ -301,12 +301,18 @@ cds.model = await cds.load('*') ### cds. app {.property} -The [express.js Application object](https://expressjs.com/de/4x/api.html#app) constructed during bootstrapping. Several framework operations use that to add express handlers or middlewares. It is initialised in built-in `server.js` like so: +The [express.js Application object](https://expressjs.com/en/api.html#app) is constructed during bootstrapping. Several framework operations use it to add express handlers or middlewares. It'sĀ initialized in theĀ built-in `server.js` file: ```js cds.app = require('express')() ``` +:::warning +The CAP Node.js runtime supports express.js versions 4 and 5 (beta). +However, some other (transitive) dependencies of your project may still rely on express.js version 4. +In this case, you must not upgrade. +::: + [Learn more about bootstrapping in `cds.server`.](./cds-serve){.learn-more}