Install nodejs and yarn and configure Taobao source process record

Install nodejs and yarn and configure Taobao source process record

1. Download nodejs

Visit and download | Node.js Chinese website (nodejs.cn)

Download address of this site: Click to download

2. Double-click to install

Click Next for all and then Install.

3. Reset the global npm source and correct it to Taobao's NPM image:

Hold down the [Shift] key and right-click the mouse -> Open the PowerShell window this time

Execute the following command

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

4. Install Yarn

cnpm i -g yarn

If an error is reported as shown in the figure below, execute the following command

set-ExecutionPolicy RemoteSigned

5. Set up Yarn’s Taobao source

yarn config set registry http://registry.npm.taobao.org
This is the end of this article about installing nodejs and yarn and configuring Taobao source process recording. For more information about installing nodejs and yarn, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!
You may also be interested in:
  • Nodejs installation steps under Linux (complete and detailed)
  • Simple nodejs installation and environment configuration under windows system
  • Detailed introduction to the installation and use of Yarn
  • Example of how to automatically generate Vue components through npm or yarn
  • Detailed explanation of how to use yarn and upgrade Node.js
  • Summary of yarn and npm command lines

<<:  Detailed explanation of using Alibaba Cloud image repository to build foreign Docker images

>>:  Solve the problem of Tomcat10 Catalina log garbled characters

Recommend

Detailed installation and configuration tutorial of mysql5.7 on CentOS

Install Make sure your user has permission to ins...

Linux file systems explained: ext4 and beyond

Today I will take you through the history of ext4...

Application of CSS3 animation effects in activity pages

background Before we know it, a busy year is comi...

Detailed explanation of this pointing in JS arrow function

Arrow function is a new feature in ES6. It does n...

Several ways to generate unique IDs in JavaScript

Possible solutions 1. Math.random generates rando...

How to use MySQL group by and order by together

Suppose there is a table: reward (reward table), ...

Use a few interview questions to look at the JavaScript execution mechanism

Table of contents Previous words Synchronous and ...

How to implement a binary search tree using JavaScript

One of the most commonly used and discussed data ...

JS implements circular progress bar drag and slide

This article example shares the specific code of ...

Unity connects to MySQL and reads table data implementation code

The table is as follows: Code when Unity reads an...

Implement a simple data response system

Table of contents 1. Dep 2. Understand obverser 3...