I'm new to Node.js, and I'm wondering how to determine which version of Node.js a specific version of NestJS supports. I've checked the package-lock.json file for engines property, but it doesn't seem to provide this information. I also couldn't find any documentation on the NestJS website.
Specifically, I'd like to confirm if @nestjs/testing 9.4.0 is compatible with Node.js 18.
Node 18 is compatible with Nest v9.
More specifically, Nest v9 is compatible with Node version 12 and up, except 13 for reasons of how the unstable build worked.
Nest v10 is only compatible with 16 and up, IIRC