# Node\.js 14 LTS is now available

**Published:** February 4, 2021 | **Authors:** Steven Salat, Leo Lamprecht

---

As of today, version 14 of Node.js can be selected in the **Node.js Version** section on the General page in the **Project Settings** (newly created Projects will default to the new version).

Among [other features](https://nodejs.medium.com/node-js-version-14-available-now-8170d384567e), the new version introduces [Diagnostic Reports](https://nodejs.org/docs/latest-v14.x/api/report.html), which can be logged to [Log Drains](https://vercel.com/blog/log-drains) (recommended) like so:

```javascript
geo: {
    city?: string
    country?: string
    region?: string
}
```

The following features were introduced through [v8](https://v8.dev):

- [Nullish coalescing operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Nullish_coalescing_operator)
- [Optional chaining](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Optional_chaining)
- [Intl.DisplayNames](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames)
- [Intl.DateTimeFormat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat)

The exact version used is 14.15.4 ([changelog](https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V14.md#14.15.4)), but automatic updates will be applied for new minor and patch releases. Therefore, only the major version (14.x) is guaranteed.

Check out [the documentation](https://vercel.com/docs/runtimes#official-runtimes/node-js/node-js-version) as well.

---

📚 **More updates:** [View all changelog entries](/changelog/sitemap.md) | [Blog](/blog/sitemap.md)