Skip to content

Add nvm and Node.js installation instructions#7

Open
Copilot wants to merge 3 commits into
mainfrom
copilot/install-node-nvm
Open

Add nvm and Node.js installation instructions#7
Copilot wants to merge 3 commits into
mainfrom
copilot/install-node-nvm

Conversation

Copilot AI commented Dec 11, 2025

Copy link
Copy Markdown
Contributor

Adds development environment setup documentation for Node.js v24 using nvm, required for Ethereum EIP testing and development tools.

Changes

  • New "Setting Up Your Development Environment" section with step-by-step nvm installation and Node.js v24 setup
  • Security note referencing official nvm repository for script verification
  • Version verification commands for Node.js (v24.12.0) and npm (11.6.2)
# Install nvm
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
. "$HOME/.nvm/nvm.sh"

# Install and verify Node.js 24
nvm install 24
node -v  # Should print "v24.12.0"
npm -v   # Should print "11.6.2"

Positioned before the contribution workflow to ensure developers have required tooling before forking the repository.

Original prompt

Download and install nvm:

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash

in lieu of restarting the shell

. "$HOME/.nvm/nvm.sh"

Download and install Node.js:

nvm install 24

Verify the Node.js version:

node -v # Should print "v24.12.0".

Verify npm version:

npm -v # Should print "11.6.2".


💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Copilot AI and others added 2 commits December 11, 2025 23:58
Co-authored-by: Darliewithrow <216807437+Darliewithrow@users.noreply.github.com>
Co-authored-by: Darliewithrow <216807437+Darliewithrow@users.noreply.github.com>
Copilot AI changed the title [WIP] Add installation instructions for nvm and Node.js Add nvm and Node.js installation instructions Dec 12, 2025
Copilot AI requested a review from Darliewithrow December 12, 2025 00:02

@Darliewithrow Darliewithrow left a comment

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Install nvm

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
. "$HOME/.nvm/nvm.sh"

Install and verify Node.js 24

nvm install 24
node -v # Should print "v24.12.0"
npm -v # Should print "11.6.2"

@Darliewithrow Darliewithrow reopened this Dec 14, 2025
@Darliewithrow Darliewithrow marked this pull request as ready for review December 14, 2025 00:09
@Darliewithrow

Copy link
Copy Markdown
Owner

git push -u origin main

@Darliewithrow

Copy link
Copy Markdown
Owner

git push -u origin main

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants