Install the latest Node.js
Node.js is becoming a requirement for today's Web development toolkit thanks to popular projects like Facebook's React. We'll discuss it in more detail during the course.
- Check if
node
and was installed:
$ node --version # or node -v
# v12.6.0 (current, but in the time you check might be different)
If node
is not installed, proceed to the next step:
- To install the latest version of Node.js, run this command in your terminal (without the
$
).
$ nvm install node