当前位置 : 主页 > 网页制作 > Nodejs >

node.js – Grunt Bower jquery.min.map错误.设置我的第一个MEAN应用程序

来源:互联网 收集:自由互联 发布时间:2021-06-16
我正在尝试设置MEAN环境.我一直收到这个错误: Error: ENOENT, no such file or directory ‘/home/user/app1/bower_components/jquery/dist/jquery.min.map’ 我试过CentOS7和RHEL6,在CentOS上我尝试从源代码安装nodejs
我正在尝试设置MEAN环境.我一直收到这个错误:

Error: ENOENT, no such file or directory
‘/home/user/app1/bower_components/jquery/dist/jquery.min.map’

我试过CentOS7和RHEL6,在CentOS上我尝试从源代码安装nodejs,也从epel安装.在RHEL6上,我使用此方法来设置nodejs:

curl -sL https://rpm.nodesource.com/setup | bash -
yum install -y nodejs
npm install -g mean-cli

mean init app1
cd app1 && node install

grunt
<error>

当我尝试使用bower安装时,我无法执行“git ls-remote –tags –heads git://github.com/angular/bower-angular-mocks.git”,在bower安装上退出#128的代码.要解决此问题,请运行此命令git config –global url.“https://”.insteadOf git://我不确定它是否持久.

这解决了RHEL6上的问题,但它没有在CentOS7上修复它.我回到CentOS7并再次尝试,它似乎已经奏效了…我只是继续前进,现在不再质疑它.

您需要运行bower install来下载这些依赖项.您将在项目根目录中指定项目依赖项bower.json和package.json(因为您运行的是npm install).
网友评论