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
8 changes: 7 additions & 1 deletion node.js/cds-facade.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}


Expand Down
Loading