New Features in NodeJS
Loading Env files
Node.js can now load an env file either by specifying it in the command line (--env-file) or programmatically through process.loadEnvFile API.
This now removes the need to use dotenv package for simple use cases.
Refer this guide for more details.