search
HomeWeb Front-endJS TutorialWhat should I do if node.js npm cannot be used?

Node.js npm cannot be used Solution: 1. Uninstall node.js; 2. Delete npm and npm-cache under "C:\Users\Administrator\AppData\Roaming"; 3. Reinstall Node.js is enough.

What should I do if node.js npm cannot be used?

The operating environment of this article: Windows 7 system, nodejs version 8.9.3, Dell G3 computer.

What should I do if node.js npm cannot be used?

About the solution to the inability to use npm after nodejs is installed:

Because it is required to use vue in conjunction with node for project development environment deployment, try to install nodejs.

As for what others said after installing version 6, it will be stable. In fact, after installing version 6, you can use global npm.

Node.js installation package and source code download address is: https ://nodejs.org/en/download/.



##Select this Enter all the way

##Click to agree and it will be installed to the C drive by default


After installation, click the [Finish] button to complete the installation

At this point, Node.js has been installed. You can perform a simple test first to see if the installation is successful. There will be more details later. To configure the environment

Press the [win R] key on the keyboard, enter cmd, and then press Enter to open the cmd window

This window does not have administrator rights at this time

This is an important point!!!!


## This is the normal installation effect if the C drive has not been touched before

Otherwise this will happen

ERR error This means the path is wrong The npm package under that folder cannot be found.

At this time, check if you have used npm before. If so, delete and reinstall

Delete cleanly

After installation Click the [Finish] button to complete the installation

Now Node.js has been installed. You can first briefly test whether the installation is successful, and then configure the environment.

Press [win R] on the keyboard Key, enter cmd, then press Enter to open the cmd window

node -v is normal, npm -v reports an error

As shown below:

What should I do if node.js npm cannot be used?
Error: Cannot find module 'internal/fs'…

The solution is as follows:

1. Uninstall node.js, specific operations:
What should I do if node.js npm cannot be used?

2. Delete npm under C:\Users\Administrator\AppData\Roaming , The specific operation of npm-cache is as follows:
What should I do if node.js npm cannot be used?

3. Reinstall node.js, and enter node -v and npm -v in dos again. You can see the corresponding version number as shown in the text. Shown in a picture.

Follow the steps to install once. The command to open this time must be window x

Select the command prompt (Administrator A) and click to operate

Then check node -v to view the version npm -v to view the version It will return to normal

After installation, click the [Finish] button to complete the installation

At this point, Node.js has been installed. You can first simply test whether the installation is successful, and then configure the environment.
Press the [win R] key on the keyboard, enter cmd, and then press Enter. Open the cmd window

Here is a description: The new version of Node.js has its own npm, which will be installed together when installing Node.js. The role of npm is to manage the packages that Node.js depends on, which is also understandable. What you need to install/uninstall Node.js

5. Environment Configuration

Description: The environment configuration here mainly configures the path where the global module installed by npm is located, and the path of the cache. The reason for configuring it is because it will be executed similarly in the future: When using the installation statement of npm install express [-g] (the following optional parameter -g, g represents global installation), the installed module will be installed to [C:\Users\username\AppData\Roaming\npm 】path, occupying C drive space.
For example: I want to put the path of the full module and the cache path in the folder where I installed node.js, then create two folders [node_global] under the folder I installed [D:\Develop\nodejs] ] and [node_cache] as shown below:

After creating two empty folders, open the cmd command window, enter

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

, then set the environment variables, close the cmd window, "My Computer "-Right click-"Properties"-"Advanced System Settings"-"Advanced"-"Environment Variables"

Enter the environment variables dialog box, create a new [NODE_PATH] under [System Variables], enter [D:\ Develop\nodejs\node_global\node_modules], change [Path] under [User Variables] to [D:\Develop\nodejs\node_global]

6. Test

After configuration, After installing a module for testing, we will install the most commonly used express module, open the cmd window,
Enter the following command to install the module globally:

npm install express -g     # -g是全局安装的意思

Add Taobao image

After installation, click the [Finish] button to complete the installation.

At this point, Node.js has been installed. You can first perform a simple test to see if the installation is successful, and then configure the environment.
On the keyboard Press the [win R] key, enter cmd, then press Enter to open the cmd window

How to use mirroring (any of the three methods can solve the problem, it is recommended to use the third method, hard-code the configuration, The configuration will still be there when you use it next time):

1. Pass the config command

npm config set registry https://registry.npm.taobao.org  npm info underscore (如果上面配置正确这个命令会有字符串response)

2. Specify

npm --registry https://registry.npm.taobao.org info underscore

3 on the command line. Edit ~/.npmrc Add the following content

registry = https://registry.npm.taobao.org

安装完后点击【Finish】按钮完成安装

至此Node.js已经安装完成,可以先进行下简单的测试安装是否成功了,后面还要进行环境配置
在键盘按下【win+R】键,输入cmd,然后回车,打开cmd窗口

推荐学习:《node.js视频教程

The above is the detailed content of What should I do if node.js npm cannot be used?. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
Vercel是什么?怎么部署Node服务?Vercel是什么?怎么部署Node服务?May 07, 2022 pm 09:34 PM

Vercel是什么?本篇文章带大家了解一下Vercel,并介绍一下在Vercel中部署 Node 服务的方法,希望对大家有所帮助!

node.js gm是什么node.js gm是什么Jul 12, 2022 pm 06:28 PM

gm是基于node.js的图片处理插件,它封装了图片处理工具GraphicsMagick(GM)和ImageMagick(IM),可使用spawn的方式调用。gm插件不是node默认安装的,需执行“npm install gm -S”进行安装才可使用。

怎么使用pkg将Node.js项目打包为可执行文件?怎么使用pkg将Node.js项目打包为可执行文件?Jul 26, 2022 pm 07:33 PM

如何用pkg打包nodejs可执行文件?下面本篇文章给大家介绍一下使用pkg将Node.js项目打包为可执行文件的方法,希望对大家有所帮助!

一文解析package.json和package-lock.json一文解析package.json和package-lock.jsonSep 01, 2022 pm 08:02 PM

本篇文章带大家详解package.json和package-lock.json文件,希望对大家有所帮助!

分享一个Nodejs web框架:Fastify分享一个Nodejs web框架:FastifyAug 04, 2022 pm 09:23 PM

本篇文章给大家分享一个Nodejs web框架:Fastify,简单介绍一下Fastify支持的特性、Fastify支持的插件以及Fastify的使用方法,希望对大家有所帮助!

node爬取数据实例:聊聊怎么抓取小说章节node爬取数据实例:聊聊怎么抓取小说章节May 02, 2022 am 10:00 AM

node怎么爬取数据?下面本篇文章给大家分享一个node爬虫实例,聊聊利用node抓取小说章节的方法,希望对大家有所帮助!

手把手带你使用Node.js和adb开发一个手机备份小工具手把手带你使用Node.js和adb开发一个手机备份小工具Apr 14, 2022 pm 09:06 PM

本篇文章给大家分享一个Node实战,介绍一下使用Node.js和adb怎么开发一个手机备份小工具,希望对大家有所帮助!

图文详解node.js如何构建web服务器图文详解node.js如何构建web服务器Aug 08, 2022 am 10:27 AM

先介绍node.js的安装,再介绍使用node.js构建一个简单的web服务器,最后通过一个简单的示例,演示网页与服务器之间的数据交互的实现。

See all articles

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use