Browse Source

📌 Add NodeJS version management and instructions (#551)

pull/13907/head
Alejandra S 2 years ago
committed by GitHub
parent
commit
64e4d37ee2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      {{cookiecutter.project_slug}}/frontend/.nvmrc
  2. 15
      {{cookiecutter.project_slug}}/frontend/README.md

1
{{cookiecutter.project_slug}}/frontend/.nvmrc

@ -0,0 +1 @@
18.12.1

15
{{cookiecutter.project_slug}}/frontend/README.md

@ -1,5 +1,20 @@
# frontend # frontend
## Node Requirements
You can use either [fnm](https://github.com/Schniz/fnm) or [nvm](https://github.com/nvm-sh/nvm) to manage your Node.js versions.
### Using nvm
If you prefer nvm, run the following command to install the recommended Node.js version:
```
nvm install
```
### Using fnm
If you prefer fnm, run the following command to install the recommended Node.js version:
```
fnm install
```
## Project setup ## Project setup
``` ```
npm install npm install

Loading…
Cancel
Save