Home Web Front-end Front-end Q&A How to install nodejs using compressed package

How to install nodejs using compressed package

Apr 26, 2023 am 09:07 AM

Node.js is a JavaScript running environment based on the Chrome V8 engine. It allows JavaScript to run on the server side and is generally used to build highly scalable web applications. There are many ways to install Node.js, one of which is to use a compressed package. This article will describe in detail how to install Node.js using a compressed package.

1. Download the Node.js compressed package

Before installation, you need to download the Node.js compressed package from the Node.js official website https://nodejs.org/. Choose the version that suits you. It is generally recommended to choose the LTS (Long-Term Support) version. After the download is completed, you can use the following command to view the downloaded file location:

1

2

cd ~/Downloads

ls

Copy after login

You can see the downloaded compressed package file name, such as node-v14.18.0-linux-x64.tar.xz. Before installation, you need to unzip the package.

2. Decompress the Node.js compressed package

Extract the downloaded compressed package to the specified directory, such as /usr/local/. Enter the following command in Terminal:

1

sudo tar -xvf node-v14.18.0-linux-x64.tar.xz -C /usr/local/

Copy after login

Among them, the -C parameter indicates the specified decompression directory, and /usr/local/ is the directory we specified. The process may require an administrator password. After decompression is complete, you can check whether there are two files, node and npm, in the decompression directory:

1

2

cd /usr/local/

ls -l node-v14.18.0-linux-x64/

Copy after login

You can see two files, node and npm, indicating that Node.js has been successfully installed.

3. Configure Node.js environment variables

Although Node.js has been installed, you still need to configure environment variables when using it so that you can use node and npm commands directly. Environment variables can be edited with the following command:

1

sudo nano /etc/profile

Copy after login

Add the following content at the end of the file:

1

2

export NODE_HOME=/usr/local/node-v14.18.0-linux-x64

export PATH=$NODE_HOME/bin:$PATH

Copy after login

Save and exit. At this time, you also need to use the source command to make the file effective immediately:

1

source /etc/profile

Copy after login

4. Test the Node.js installation

After the installation is completed, you can test to confirm whether Node.js is successfully installed. Enter the following command in Terminal:

1

node -v

Copy after login

You can see the output Node.js version number, such as v14.18.0, which means Node.js has been installed successfully. Similarly, you can also test whether npm is installed successfully:

1

npm -v

Copy after login

Output the version number of npm, such as 6.14.15, which means npm has also been installed successfully.

The above are all the steps to install Node.js using a compressed package. Although compared to other installation methods, it takes some time to install using a compressed package, but it also has the advantage that you can freely choose the installation path and do not require administrator rights. After the installation is complete, we can start using Node.js to build applications and enjoy the convenience and efficiency it brings.

The above is the detailed content of How to install nodejs using compressed package. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

React's Role in HTML: Enhancing User Experience React's Role in HTML: Enhancing User Experience Apr 09, 2025 am 12:11 AM

React combines JSX and HTML to improve user experience. 1) JSX embeds HTML to make development more intuitive. 2) The virtual DOM mechanism optimizes performance and reduces DOM operations. 3) Component-based management UI to improve maintainability. 4) State management and event processing enhance interactivity.

What are the limitations of Vue 2's reactivity system with regard to array and object changes? What are the limitations of Vue 2's reactivity system with regard to array and object changes? Mar 25, 2025 pm 02:07 PM

Vue 2's reactivity system struggles with direct array index setting, length modification, and object property addition/deletion. Developers can use Vue's mutation methods and Vue.set() to ensure reactivity.

React Components: Creating Reusable Elements in HTML React Components: Creating Reusable Elements in HTML Apr 08, 2025 pm 05:53 PM

React components can be defined by functions or classes, encapsulating UI logic and accepting input data through props. 1) Define components: Use functions or classes to return React elements. 2) Rendering component: React calls render method or executes function component. 3) Multiplexing components: pass data through props to build a complex UI. The lifecycle approach of components allows logic to be executed at different stages, improving development efficiency and code maintainability.

React and the Frontend: Building Interactive Experiences React and the Frontend: Building Interactive Experiences Apr 11, 2025 am 12:02 AM

React is the preferred tool for building interactive front-end experiences. 1) React simplifies UI development through componentization and virtual DOM. 2) Components are divided into function components and class components. Function components are simpler and class components provide more life cycle methods. 3) The working principle of React relies on virtual DOM and reconciliation algorithm to improve performance. 4) State management uses useState or this.state, and life cycle methods such as componentDidMount are used for specific logic. 5) Basic usage includes creating components and managing state, and advanced usage involves custom hooks and performance optimization. 6) Common errors include improper status updates and performance issues, debugging skills include using ReactDevTools and Excellent

What are the benefits of using TypeScript with React? What are the benefits of using TypeScript with React? Mar 27, 2025 pm 05:43 PM

TypeScript enhances React development by providing type safety, improving code quality, and offering better IDE support, thus reducing errors and improving maintainability.

How can you use useReducer for complex state management? How can you use useReducer for complex state management? Mar 26, 2025 pm 06:29 PM

The article explains using useReducer for complex state management in React, detailing its benefits over useState and how to integrate it with useEffect for side effects.

What are functional components in Vue.js? When are they useful? What are functional components in Vue.js? When are they useful? Mar 25, 2025 pm 01:54 PM

Functional components in Vue.js are stateless, lightweight, and lack lifecycle hooks, ideal for rendering pure data and optimizing performance. They differ from stateful components by not having state or reactivity, using render functions directly, a

React vs. Backend Frameworks: A Comparison React vs. Backend Frameworks: A Comparison Apr 13, 2025 am 12:06 AM

React is a front-end framework for building user interfaces; a back-end framework is used to build server-side applications. React provides componentized and efficient UI updates, and the backend framework provides a complete backend service solution. When choosing a technology stack, project requirements, team skills, and scalability should be considered.

See all articles