我已经尝试了几次通过他们的文档安装我的第一个AngularJS项目: https://docs.angularjs.org/misc/contribute
*# Clone your Github repository:
git clone "git@github.com:<github username>/angular.js.git"
# Go to the AngularJS directory:
cd angular.js
# Add the main AngularJS repository as an upstream remote to your repository:
git remote add upstream "https://github.com/angular/angular.js.git"
# Install node.js dependencies:
npm install
# Install bower components:
bower install
# Build AngularJS:
grunt package*
每次我尝试npm安装时,都会返回jasmine-node
的错误
我已经搜索了解决方案并尝试了一系列方法&amp;有希望的测试,但仍然没有收到任何运气。
非常感谢任何帮助,伙计们!
答案 0 :(得分:0)
这些文档适用于想要贡献(使用angularjs库)的人,而不适用于使用 angular构建项目的人。对我而言,似乎你想要后者。
有很多教程,只搜索angularjs beginner tutorial
,找到最适合你的教程。
答案 1 :(得分:0)
我经常遇到的一个问题是协议问题,因为特别是对于Bower,返回了npm错误。
你可以让git替换你的协议。跑吧:
git config --global url."https://".insteadOf git://
道歉,如果这个帖子有点混乱,但希望它也可以帮助那些人。