Home > Net >  Warning: The current version of Node (18.10.0) is not supported by Angular
Warning: The current version of Node (18.10.0) is not supported by Angular

Time:10-09

Am getting this warning while updating my node package. Any solution for this would be great help. I updated my node using the downloader file.

https://i.stack.imgur.com/1NKR8.png

CodePudding user response:

The answer by Clydin from the Angular team:

Angular officially supports all Node.js versions currently in active LTS or maintenance LTS (https://angular.io/guide/setup-local#prerequisites). From the current Node.js release calendar (https://nodejs.org/en/about/releases/), Node.js v18 will enter LTS on 2022-10-25. Based on the Angular release cadence, Node.js v18 would then be officially supported by Angular in v15 at the earliest. Node.js v14 will reach its end-of-life on 2023-04-30 and would then no longer be supported by Angular v16 at the earliest.

So support for Node 18 is expected for Angular 15.

  • Related