E
E
Eugene2021-11-19 15:05:03
Node.js
Eugene, 2021-11-19 15:05:03

How to install Nodejs v8.12 via terminal?

How to install Nodejs v8.12 via terminal?
There is version 8.9, v8.12 can not be found.

Answer the question

In order to leave comments, you need to log in

3 answer(s)
L
lssssssssssl, 2021-11-19
@djon_pulse

619794d45ce9f047217631.png

V
Vasily Bannikov, 2021-11-19
@vabka

Can be done via n ( https://www.npmjs.com/package/n )

npm i n -g
sudo n 8.12

S
Sergio, 2021-11-19
@sergiodev

You can build from source, for example

git clone https://github.com/nodejs/node.git -b v8.9.0
cd node
./configure
make

Or download the binaries on the official site - https://nodejs.org/download/release/ - and unpack somewhere in /usr/local (or any convenient directory)
wget node_js_download_url
tar xvf node...gz

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question