Ir al contenido
  • +31 653-919-302
Cafayate.Net
  • 0
  • 0
  • Inicia sesión
  • Nederlands English (US) Español (AR)
  • Contáctanos
  • Inicio
  • Blog
  • Empleos
  • Contáctanos
Cafayate.Net
  • 0
  • 0
    • Inicio
    • Blog
    • Empleos
    • Contáctanos
  • +31 653-919-302
  • Nederlands English (US) Español (AR)
  • Inicia sesión
  • Contáctanos

How to Install Node.js on Ubuntu 14.04

  • Todos los blogs
  • Tech Blog
  • How to Install Node.js on Ubuntu 14.04
  • 5 de marzo de 2021 por
    Administrator

     

    Node.js, a JavaScript-based platform, is an increasingly popular, lightweight, and efficient option for developers. It allows coders to use JavaScript on both the front-end and the back-end thanks to Google’s awesome V8 engine.

    With more than 100,000 packages, Node package manager, or npm, is a fantastic way to find open-source solutions for extending Node and npm’s semantic versioning system, which allows for very tight control over what packages you are using.

    5 Ways to Install Node.js on Ubuntu

    There are several ways to do this, but we recommend Option 1: Node Version Manager (nvm). Here is the full list of options:

    • Option 1 (Our pick!): Install the nvm script to manage multiple active Node.js versions
    • Option 2: Install the standard Debian/Ubuntu packages for Node and npm
    • Option 3: Install from Debian/Ubuntu packages created by the Node.js (associated) team
    • Option 4: Install Node.js manually from standard binary packages on the official website

    Option 1 is our recommended method for everyone. Option 2 is incredibly simple, while Options 3, 4, and 5 have the advantage of keeping your Node and npm packages the most current. Before trying any of these install options, you’ll want to remove the old Node package to avoid conflicts. And for any more information on Node.js, you can always check out the Github repository.

    Before You Get Started: Remove Old Node Package to Avoid Conflicts

    On Ubuntu, the Node.js package has a similar name to the older version, Node. The latter is an amateur packet radio program you can more than likely remove.

    If you already have Node installed, you might want to remove it. Some Node.js tools might execute Node.js as Node instead of Node.js, causing conflicts.

    You can look for and remove the Node package by executing these commands in a terminal. To access a terminal, navigate through the desktop menu:
    Applications → Accessories → Terminal

    Run this command and if it says install in the right column, Node is on your system:

    1
    2
    3
    $ dpkg —get–selections | grep node
    ax25–node                                       install
    node                                            install

    If you found the old Node package installed, run this command to completely remove it:

    1
    sudo apt–get remove —purge node

    Option 1: Install Node.js with Node Version Manager

    First, make sure you have a C++ compiler. Open the terminal and install the build-essential and libssl-dev packages if needed. By default, Ubuntu does not come with these tools — but they can be installed in the command line.

    Use apt-get to install the build-essential package:

    1
    sudo apt–get install build–essential checkinstall

    Employ a similar process to get libssl-dev:

    1
    sudo apt–get install libssl–dev

    You can install and update Node Version Manager, or nvm, by using cURL:

    1
    curl –o– https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash

    You will be asked to close and reopen the terminal. To verify that nvm has been successfully installed after you reopen the terminal, use:

    1
    command –v nvm

    That command will output nvm if the installation worked.

    To download, compile and install the latest version of Node:

    1
    nvm install 5.0

    In any new shell, you’ll need to tell nvm which version to use:

    1
    nvm use 5.0

    To set a default Node.js version to be used in any new shell, use the alias default:

    1
    nvm alias default node

    Not only does nvm allow you to run newer versions of Node.js and npm, you can install and migrate any desired versions you’d prefer. Go to the nvm GitHub repository for more information.

    Option 2: Install Node.js with Ubuntu Package Manager

    To install Node.js, type the following command in your terminal:

    1
    sudo apt–get install nodejs

    Then install the Node package manager, npm:

    1
    sudo apt–get install npm

    Create a symbolic link for node, as many Node.js tools use this name to execute.

    1
    sudo ln –s /usr/bin/nodejs /usr/bin/node

    Now we should have both the Node and npm commands working:

    1
    2
    3
    4
    $ node –v
    v0.10.25
    $ npm –v
    1.3.10

    Option 3: Install Node.js with Maintained Ubuntu Packages

    Add the Node.js-maintained repositories to your Ubuntu package source list with this command:

    1
    curl –sL https://deb.nodesource.com/setup | sudo bash –

    Then install Node.js with apt-get:

    1
    sudo apt–get install nodejs

    Optionally we can create a symbolic link for node (for reasons mentioned earlier):

    1
    sudo ln –s /usr/bin/nodejs /usr/bin/node

    Using this install option, we end up with newer versions of Node.js and npm:

    1
    2
    3
    4
    $ node –v
    v0.10.44
    $ npm –v
    2.15.0

    Option 4: Install Node.js with Standard Binary Packages

    Go to the official Node.js download page and download either the 32-bit or 64-bit Linux binary file, depending on your system type.

    You can determine the CPU architecture of your server with these commands:

    1
    2
    3
    4
    $ getconf LONG_BIT
    64
    $ uname –p
    x86_64

    You can download the file from the browser or from the console. The latter is shown below (Note: the specific Node.js version might be different for you):

    1
    wget https://nodejs.org/dist/v4.4.4/node-v4.4.4-linux-x64.tar.xz

    To make sure you can unpack the file, install xz-utils:

    1
    sudo apt–get install xz–utils

    Next, execute the following command to install the Node.js binary package in /usr/local/:

    1
    tar –C /usr/local —strip–components 1 –xJf node–v4.4.4–linux.x64.tar.xz

    You should now have both Node.js and npm installed in /usr/local/bin. You can check this with:

    1
    2
    ls –l /usr/local/bin/node
    ls –l /usr/local/bin/npm

    Final Words

    Hopefully this will get you going with Node.js on Ubuntu. If you are new to developing applications with Node.js, the Nodeschool.io website has several interesting tutorials.

    en Tech Blog
    Odoo multi-website improvements debate

    Diseñado para empresas

    Somos un equipo de personas apasionadas cuyo objetivo es mejorar la vida de todos a través de productos revolucionarios. Creamos grandes productos para resolver sus problemas empresariales. Nuestros productos están diseñados para pequeñas y medianas empresas dispuestas a optimizar su rendimiento.

    Contáctenos

    Plantexel
    Pedernera
    Salta Capital 
    Argenina

    • +31 653-919-302
    • [email protected]
    Síganos
    Copyright © Plantexel
    Nederlands | English (US) | Español (AR)