0

我开始做一些 Angular 教程,但我无法让 npm 在 OSX Yosemite 上启动。

下面是错误日志。我似乎已按照说明进行操作,但在 localhost:3000 上看不到已编译的应用程序。

0 info it worked if it ends with ok
1 verbose cli [ '/usr/local/bin/node', '/usr/local/bin/npm', 'run', 'lite' ]
2 info using npm@2.15.8
3 info using node@v4.4.7
4 verbose run-script [ 'prelite', 'lite', 'postlite' ]
5 info prelite media-watch-list@1.0.0
6 info lite media-watch-list@1.0.0
7 verbose unsafe-perm in lifecycle true
8 info media-watch-list@1.0.0 Failed to exec lite script
9 verbose stack Error: media-watch-list@1.0.0 lite: `lite-server`
9 verbose stack Exit status 1
9 verbose stack     at EventEmitter.<anonymous> (/usr/local/lib/node_modules/npm/lib/utils/lifecycle.js:217:16)
9 verbose stack     at emitTwo (events.js:87:13)
9 verbose stack     at EventEmitter.emit (events.js:172:7)
9 verbose stack     at ChildProcess.<anonymous> (/usr/local/lib/node_modules/npm/lib/utils/spawn.js:24:14)
9 verbose stack     at emitTwo (events.js:87:13)
9 verbose stack     at ChildProcess.emit (events.js:172:7)
9 verbose stack     at maybeClose (internal/child_process.js:827:16)
9 verbose stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:211:5)
10 verbose pkgid media-watch-list@1.0.0
11 verbose cwd /Users/ross/Sites/lynda/exercisefiles/c2/02-01-start
12 error Darwin 14.5.0
13 error argv "/usr/local/bin/node" "/usr/local/bin/npm" "run" "lite"
14 error node v4.4.7
15 error npm  v2.15.8
16 error code ELIFECYCLE
17 error media-watch-list@1.0.0 lite: `lite-server`
17 error Exit status 1
18 error Failed at the media-watch-list@1.0.0 lite script 'lite-server'.
18 error This is most likely a problem with the media-watch-list package,
18 error not with npm itself.
18 error Tell the author that this fails on your system:
18 error     lite-server
18 error You can get information on how to open an issue for this project with:
18 error     npm bugs media-watch-list
18 error Or if that isn't available, you can get their info via:
18 error
18 error     npm owner ls media-watch-list
18 error There is likely additional logging output above.
19 verbose exit [ 1, true ]
4

1 回答 1

1

问题已解决。真正的问题不在于连接到 localhost:3000,而是没有正确安装 rails。当我运行“rails server”时,出现一条错误行:

C:/Ruby200-x64/lib/ruby/gems/2.0.0/gems/tzinfo-1.2.1/lib/tzinfo/data_source.rb: 
No source of timezone data could be found. 

Please refer to http://tzinfo.github.io/datasourcenot found for help resolving this error. 

The link to the solution is: 
https://github.com/tzinfo/tzinfo/wiki/Resolving-TZInfo%3a%3a
DataSourceNotFound-Errors I think this is a common error in Windows machine. 
于 2016-07-08T11:54:14.183 回答