User Tools

Site Tools


ubuntu:install_node.js:install_from_source

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

ubuntu:install_node.js:install_from_source [2021/01/25 10:40] – created peterubuntu:install_node.js:install_from_source [2021/01/25 10:41] (current) peter
Line 1: Line 1:
 ====== Ubuntu - Install node.js - Install from Source ====== ====== Ubuntu - Install node.js - Install from Source ======
 +
 +===== Install packages required to compile the source code =====
 +
 +<code bash>
 +sudo apt install build-essential
 +</code>
 +
 +----
 +
 +===== Download the latest source code from nodejs.org =====
 +
 +<code bash>
 +wget http://nodejs.org/dist/v0.10.9/node-v0.10.9.tar.gz
 +</code>
 +
 +----
 +
 +===== Extract the tar archive =====
 +
 +<code bash>
 +tar zxvf node-v0.10.9.tar.gz
 +</code>
 +
 +----
 +
 +===== Enter the directory we just extracted from the tar archive =====
 +
 +<code bash>
 +cd node-v0.10.9
 +</code>
 +
 +----
 +
 +===== Compile and install =====
 +
 +<code bash>
 +./configure
 +make
 +make install
 +</code>
 +
 +----
 +
 +===== Test =====
 +
 +Test node.js to make sure it’s working correctly.
 +
 +<code bash>
 +echo "console.log('Hello World');" | node
 +</code>
 +
 +This should simply print “Hello World” in the console.
 +
 +If you don’t get any errors, node.js is installed and functional and you may just have executed your first node.js script.
  
ubuntu/install_node.js/install_from_source.1611571241.txt.gz · Last modified: 2021/01/25 10:40 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki