Detailed explanation of node.js installation and HbuilderX configuration

Detailed explanation of node.js installation and HbuilderX configuration

npm installation tutorial:

1. Download the Node.js installation package

Official website: https://nodejs.org/en/

2. Before using, let's first understand what these three things are used for.

webpack: Its main purpose is to prepare all static resources that need to be released on the browser side through CommonJS syntax, such as merging and packaging resources.

vue-cli: User-generated Vue project template. (Help you quickly start a Vue project, that is, give you a set of Vue structures, including basic dependency libraries, which can be installed with just npm install)

insert image description here

As shown in the figure, the version downloaded now is 14.16.0 LTS (recommended for users now):

insert image description here

Double-click to install

1. First, we can see that the default path is C drive. Here we take D drive as an example for installation: d:\node.js

insert image description here
insert image description here

Click Next all the way

insert image description here

Click Finish

insert image description here

Next we win + r shortcut key

insert image description here

We enter echo %PATH%

insert image description here

We enter node -v and npm -v

insert image description here

Let's take a look at C:\Users\Administrator\AppData\Roaming

insert image description here

We can see that npm's local repository is running in the user directory of the system disk C drive (npm-cache is not seen because it has not been used. The cache directory is generated as soon as it is used). We try to move these two directories back to D:\nodejs

First create two directories as shown below

insert image description here

Then run the following 2 commands

npm config set prefix "D:\nodejs\node_global"
npm config set cache "D:\nodejs\node_cache"

As shown below, let's take a look at the local repository of npm and enter the command npm list -global

insert image description here

Enter the command npm config set registry=http://registry.npm.taobao.org to configure the mirror site

insert image description here

Enter the command npm config list to display all configuration information. Let’s focus on one configuration file.

insert image description here

C:\Users\Administrator.npmrc

insert image description here

Using txt text or a text editor, we can see the configuration information just now:

insert image description here

Check if the mirror station works. Command 1

npm config get registry 

insert image description here

Check if the mirror station is OK Command 2
Npm info vue to see if you can get information about vue

insert image description here
insert image description here
insert image description here

Note that at this time, the default module D:\nodejs\node_modules directory will be changed to D:\nodejs\node_global\node_modules directory.
If you run commands such as npm install directly, an error will be reported.
We need to do 1 thing:

1. Add the environment variable NODE_PATH. The content is: D:\nodejs\node_global\node_modules

insert image description here

(Note that the following operations require you to reopen CMD for the above environment variables to take effect)

1. Test NPM installation of vue.js

Command: npm install vue -g
The -g here means installing to the global directory

insert image description here

Let's take a look: D:\nodejs\node_global\node_modules\vue

insert image description here

2. Test NPM installation of vue-router

Command: npm install vue-router -g

insert image description here
insert image description here

Run npm install vue-cli -g to install the Vue scaffolding

insert image description here
insert image description here
insert image description here

Add D:\nodejs\node_global to the path environment variable
For versions below Windows 10, the PATH is displayed horizontally. Please note that there should be no semicolon [;] when adding it to the end.

insert image description here

Reopen CMD and test whether Vue is working properly

insert image description here

Note that the vue-cli tool has built-in templates including webpack and webpack-simple. The former is for more complex and professional projects.
His configuration is not all placed in webpack.config.js in the root directory.

Initialization, installation dependencies:
When installing, select install vue-router? Yes and all others are No

insert image description here

Run npm install to install dependencies

insert image description here

Run npm run dev
Enter npm run dev in the dos command

insert image description here

Open http://localhost:8080 in your browser as prompted.

insert image description here

Automatically open the browser http://localhost:8080/#/

Enter in the DOS command: npm run build

Generate static files and open the newly generated index.html file in the dist folder

insert image description here

Next, we will use the Hbuilderx tool to configure Node.js and npm

Official website: https://www.dcloud.io/hbuilderx.htmlHubilderX link

insert image description here

insert image description here

insert image description here

Enter npm run dev in the terminal to run the project

This is the end of this article about node.js installation and HbuilderX configuration. For more relevant node.js HbuilderX configuration content, 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:
  • In-depth analysis of Node.js single-threaded model
  • Understanding what Node.js is is so easy
  • Specific use of node.js global variables
  • The whole process of node.js using express to automatically build the project
  • Node.js sends emails based on STMP protocol and EWS protocol
  • Node.js file copying, folder creation and other related operations
  • Detailed explanation of asynchronous generators and asynchronous iterations in Node.js
  • Detailed explanation of the steps to create a web server with node.js
  • How to collect and parse command line arguments in Node.js
  • Detailed explanation of Alibaba Node.js technical documentation process module learning guide
  • Complete steps to develop cli using node.js
  • How to connect MySQL to Node.js through Sequelize
  • How to install the latest version of Node.js on CentOS 8.2 server
  • How to remove the BOM header of Node.js text file
  • Appium+python automated configuration (adk, jdk, node.js)
  • How to convert a callback in Node.js to a Promise
  • Node.js path module, get the file suffix operation
  • First experience with node.js crawler framework node-crawler
  • Nodejs Exploration: In-depth understanding of the principle of single-threaded high concurrency

<<:  Install two MySQL5.6.35 databases under win10

>>:  VSCode configuration Git method steps

Recommend

linux No space left on device 500 error caused by inode fullness

What is an inode? To understand inode, we must st...

Analysis of MySQL latency issues and data flushing strategy process

Table of contents 1. MySQL replication process 2....

Use JS to zoom in and out when you put the mouse on the image

Use JS to zoom in and out when the mouse is on th...

Detailed explanation of Mysql function call optimization

Table of contents Function call optimization Func...

Detailed explanation of gcc command usage under Linux system

Table of contents 1. Preprocessing 2. Compilation...

A brief summary of all encapsulation methods in Vue

Table of contents 1. Encapsulation API 2. Registe...

MySQL Community Server 5.7.19 Installation Guide (Detailed)

MySQL official website zip file download link htt...

MySQL installation and configuration methods and precautions under Windows platform

2.1、msi installation package 2.1.1、Installation I...

How to optimize MySQL query speed

In the previous chapters, we introduced how to ch...

Sample code using scss in uni-app

Pitfalls encountered I spent the whole afternoon ...

Detailed explanation of vue simple notepad development

This article example shares the specific code of ...

Analysis of Linux configuration to achieve key-free login process

1.ssh command In Linux, you can log in to another...

React Native JSI implements sample code for RN and native communication

Table of contents What is JSI What is different a...