Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通过 npm 安装包会显示以下消息并且没有安装任何内容。
sakthiganesh@ubuntu:~$ npm install express express@2.3.8 ./node_modules/express ├── mime@1.2.2 () ├── connect@1.4.1 () └── qs@0.1.0
任何解决方案?
Express 已在您的情况下安装。默认情况下,npm 将模块安装在node_modules当前目录的子目录中。如果要全局安装模块,请使用带-g键的命令:
node_modules
-g
sudo npm install -g express
但是好的做法是将应用程序所需的模块放在应用程序目录中。转到您的 javascript 文件所在的目录并在npm install没有以下情况下运行-g:
npm install
cd /var/www/my_app npm install express