-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.nvmrc
27 lines (23 loc) · 1.19 KB
/
.nvmrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
####################################################
# .nvmrc Configuration File
####################################################
# Purpose:
# The .nvmrc file is used with Node Version Manager (NVM) to specify
# the required version of Node.js for this project. By defining the
# Node.js version, all developers and environments will use the same
# version, ensuring consistency and preventing issues caused by version
# mismatches during development or deployment.
####################################################
# NODE VERSION SPECIFICATION
####################################################
# This file specifies the Node.js version to be used throughout the
# project. Using a consistent version helps to:
# - Avoid errors due to incompatible Node.js versions during development.
# - Ensure dependencies are installed and run as expected.
# - Guarantee predictable behavior across development, testing, and deployment.
# Recommended Usage:
# - Run `nvm use` in the project directory to switch to the specified version.
# - If the required Node.js version is not installed, use `nvm install`
# followed by `nvm use` to set up the correct version.
# Node.js version required for this project.
20.11.1