Skip to content

perf: node version and configuration instructions #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,33 @@ This project is a scaffold of a React app that leverages the Ethereum blockchain

## How to install this project?

### Prerequisites

This Project uses NodeJS Version 12.x.x

First of all, be sure you uninstalled all your self-managed NodeJS versions on your machine and install NodeJS Version Manager

- [Windows Version](https://github.com/coreybutler/nvm-windows)
- [UNIX Version (OSX/Linux)](https://github.com/nvm-sh/nvm)

Once `nvm` is installed, you can use it in your favorite terminal application to download and use NodeJS v12.20.0

`nvm install 12.20.0 64`

for 64-bit based machines

or

`nvm install 12.20.0 32`

for 32-bit based machines

After the installation type

`nvm use 12.20.0`

### Instructions

1. Clone it from the repository
2. `cd` into the project folder
3. `npm install`
Expand Down