无法通过npm安装包

发布于 2024-11-09 17:21:40 字数 634 浏览 0 评论 0原文

通过 npm 安装软件包会显示以下消息,但未安装任何内容。

sakthiganesh@ubuntu:~$ npm install express
[电子邮件受保护] ./node_modules/express
├── [电子邮件受保护] ()
├── [电子邮件受保护] ()
└── [电子邮件受保护]

有什么解决方案吗?

Installing packages via npm shows the following message and nothing is installed..

sakthiganesh@ubuntu:~$ npm install express
[email protected] ./node_modules/express
├── [email protected] ()
├── [email protected] ()
└── [email protected]

any solutions ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甩你一脸翔 2024-11-16 17:21:40

Express 已安装在您的机箱中。默认情况下,npm 将模块安装在当前目录的 node_modules 子目录中。如果要全局安装模块,请使用带有 -g 键的命令:

sudo npm install -g express

但良好的做法是将应用程序所需的模块放置在应用程序目录中。转到 javascript 文件所在的目录并运行不带 -gnpm install

cd /var/www/my_app
npm install express

Express are installed already in your case. By default npm installs modules in the node_modules subdirectory of the current dir. If you want to install module globally use commands with -g key:

sudo npm install -g express

But good practice are placing modules required for your application in the application directory. Go to directory, where your javascript file took place and run npm install without -g:

cd /var/www/my_app
npm install express
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文