angular jasmine-node 未通过节点 npm 安装
angular jasmine-node not installing via node npm
我尝试了几次通过他们的文档安装我的第一个 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 安装它时 returns jasmine-node 的错误
我已经搜索了解决方案并尝试了很多方法和有希望的测试,但仍然没有收到任何好运。
非常感谢您的帮助,伙计们!
这些文档是为想要贡献(在 angularjs 库上工作)的人准备的,而不是为 使用 angular 构建项目的人准备的。在我看来,您似乎想要后者。
那里有很多教程,只需搜索 angularjs beginner tutorial
,找到最适合您的教程。
我经常遇到的一个问题是由于返回 npm 错误导致的协议问题,尤其是对于 Bower。
您可以让 git 为您替换协议。刚刚 运行:
git config --global url."https://".insteadOf git://
抱歉,如果这个线程有点乱,但希望它也能帮助其他人。
我尝试了几次通过他们的文档安装我的第一个 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 安装它时 returns jasmine-node 的错误
我已经搜索了解决方案并尝试了很多方法和有希望的测试,但仍然没有收到任何好运。
非常感谢您的帮助,伙计们!
这些文档是为想要贡献(在 angularjs 库上工作)的人准备的,而不是为 使用 angular 构建项目的人准备的。在我看来,您似乎想要后者。
那里有很多教程,只需搜索 angularjs beginner tutorial
,找到最适合您的教程。
我经常遇到的一个问题是由于返回 npm 错误导致的协议问题,尤其是对于 Bower。
您可以让 git 为您替换协议。刚刚 运行:
git config --global url."https://".insteadOf git://
抱歉,如果这个线程有点乱,但希望它也能帮助其他人。