我尝试运行npm install时出错

时间:2015-02-15 03:50:48

标签: angularjs node.js npm

我只是想在官方网站上做第一个angular.js教程。当我尝试从项目目录运行npm install时,出现以下错误。

enter image description here

我的package.json文件如下所示。

{
  "version": "0.0.0",
  "private": true,
  "name": "angular-phonecat",
  "description": "A tutorial application for AngularJS",
  "repository": "https://github.com/angular/angular-phonecat",
  "license": "MIT",
  "devDependencies": {
    "karma": "^0.12.16",
    "karma-chrome-launcher": "^0.1.4",
    "karma-jasmine": "^0.1.5",
    "protractor": "~1.0.0",
    "http-server": "^0.6.1",
    "tmp": "0.0.23",
    "bower": "^1.3.1",
    "shelljs": "^0.2.6"
  },
  "scripts": {
    "postinstall": "bower install",

    "prestart": "npm install",
    "start": "http-server -a 0.0.0.0 -p 8000",

    "pretest": "npm install",
    "test": "node node_modules/karma/bin/karma start test/karma.conf.js",
    "test-single-run": "node node_modules/karma/bin/karma start test/karma.conf.js  --single-run",

    "preupdate-webdriver": "npm install",
    "update-webdriver": "webdriver-manager update",

    "preprotractor": "npm run update-webdriver",
    "protractor": "protractor test/protractor-conf.js",

    "update-index-async": "node -e \"require('shelljs/global'); sed('-i', /\\/\\/@@NG_LOADER_START@@[\\s\\S]*\\/\\/@@NG_LOADER_END@@/, '//@@NG_LOADER_START@@\\n' + cat('bower_components/angular-loader/angular-loader.min.js') + '\\n//@@NG_LOADER_END@@', 'app/index-async.html');\""
  }
}

有人可以帮我解决这个问题。感谢。

1 个答案:

答案 0 :(得分:1)

消息是警告,有时恰好发生,但无论如何它们通常都是无用的 只要主要组件,Bower,Protractor,Karma等正在运行,那么我会尝试继续使用该教程。

您可以通过运行命令来测试他们的工作,例如

./node_modules/.bin/bower help 

但是

我认为我使用npm并运行这些命令的一个问题是它们不像角度教程那样运行。
所以教程说,运行这个:

protractor test/protractor-conf.js

您可能必须将命令修改为此

./node_modules/.bin/protractor test/protractor-conf.js

与凉亭,业力等相同

e.g。

把它放在命令前面

./node_modules./bin

./表示将此作为脚本运行,路径是您访问node_modules/.bin目录中的脚本

<强>更新
如果你想进行业力测试:
首先,确保您位于项目的根目录

./node_modules/.bin/karma start test/karma.conf.js  --single-run