Detailed steps for installing nodejs environment and path configuration in Linux

Detailed steps for installing nodejs environment and path configuration in Linux

There are two ways to install nodejs in linux. One is simple, just unzip it and use it; the other is to download the source code, compile it, and install it through make and make install commands.

Here we only talk about the first one, which is simple and convenient. There is no need to execute make or make install. Here are the steps:

1. Determine the Linux system you are using, and then download the corresponding compressed package. Here I downloaded node-v6.11.2-linux-x64.tar.xz

2. Upload to the Linux related path, usually /usr/local/, and execute the following command

xz -d node-xxxx.tar.xz --- Extract tar.xz into a tar file

tar -xvf node-xxxx.tar --- Extract the tar file into a folder

mv node-xxx node ----Change the name of the folder to node

3. Check whether the installation is successful

4. Configure soft links so that node commands can be used globally

ln -s /usr/local/node/bin/node /usr/bin/node --map the node source file to the node file under usr/bin

ln -s /usr/local/node/bin/npm /usr/bin/npm

5. Configure the node file installation path

Enter the /usr/local/node/ path:

mkdirnode_global

mkdirnode_cache

npm config set prefix "node_global"

npm config set cache "node_cache"

6. When you feel that npm is slow, you can install cnpm

npm install cnpm -g --registry=https://registry.npm.taobao.org

By the way, you can check whether the global installation -g is installed in the node_global file according to the previous settings.

To use cnpm globally as follows, remember to configure a soft link.

This is the end of this article about installing nodejs environment and path configuration in Linux. For more relevant content about installing nodejs in Linux, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Install nodejs in binary mode under linux
  • Tutorial on installing nodejs & npm and configuring global paths in Linux Centos7.2
  • How to install nodejs and npm under linux

<<:  mysql IS NULL using index case explanation

>>:  How to write a picture as a background and a link (background picture plus link)

Recommend

Linux unlink function and how to delete files

1. unlink function For hard links, unlink is used...

The difference between MySQL user management and PostgreSQL user management

1. MySQL User Management [Example 1.1] Log in to ...

Centos7.3 How to install and deploy Nginx and configure https

Installation Environment 1. gcc installation To i...

Steps to package and deploy the Vue project to the Apache server

In the development environment, the vue project i...

Mysql5.6.36 script compilation, installation and initialization tutorial

Overview This article is a script for automatical...

How to use Dockerfile to build images in Docker

Build the image Earlier we used various images fo...

Implementation of form submission in html

Form submission code 1. Source code analysis <...

MySQL5.7.27-winx64 version win10 download and installation tutorial diagram

MySQL 5.7 installation We are learning MySQL data...

What is the use of the enctype field when uploading files?

The enctype attribute of the FORM element specifie...

How to mount a disk in Linux and set it to automatically mount on boot

Knowing that everyone's time is precious, I w...

First experience of creating text with javascript Three.js

Table of contents Effect Start creating text Firs...

Solve the problem that PhpStorm fails to connect to VirtualBox

Problem description: When phpstorm's SFTP hos...