我已从http://learn.mean.io安装了mean.io堆栈,并且所有内容都已成功安装。当我尝试运行gulp
命令来运行服务器时,我得到了这个
Invoking gulp - development
[17:54:23] Using gulpfile ~/projects/mean/demo/myFirstApp/gulpfile.js
[17:54:23] Starting 'clean'...
[17:54:23] Finished 'clean' after 7.27 ms
[17:54:23] Starting 'default'...
[17:54:23] Starting 'coffee'...
[17:54:23] Finished 'coffee' after 11 ms
[17:54:23] Starting 'clean'...
[17:54:23] Starting 'less'...
[17:54:23] Starting 'sass'...
[17:54:23] Starting 'csslint'...
[17:54:23] Starting 'env:development'...
[17:54:23] Finished 'env:development' after 36 μs
[17:54:23] Starting 'devServe'...
[17:54:23] Finished 'devServe' after 40 ms
[17:54:23] Starting 'watch'...
[17:55:28] Finished 'watch' after 1.07 min
[17:55:28] Finished 'clean' after 1.07 min
[17:55:28] [nodemon] 1.8.1
[17:55:28] [nodemon] to restart at any time, enter `rs`
[17:55:28] [nodemon] watching: *.*
[17:55:28] [nodemon] starting `node --debug server.js`
Debugger listening on port 5858
我在控制台中收到此错误。
Uncaught Error: [$injector:modulerr] http://errors.angularjs.org/1.5.0/$injector/modulerr?p0=mean&p1=Error%3A%20…angular%2Fangular.min.js%3Fv%3D8c9ac3aa67fee6aa599b4624398feba7%3A20%3A449)
但是当我打开http://localhost:3000时,我得到一个空白页面。我在Ubuntu 14.04上。
任何帮助都将受到高度赞赏!感谢。
答案 0 :(得分:0)
我有同样的问题并通过运行解决了它 npm安装 在应用程序的根目录中然后运行 吞 再次
答案 1 :(得分:0)
我通过在安装“npm install --global gulp-cli”时添加“sudo”来修复此问题 在根目录中。 比如“sudo npm install --global gulp-cli”。
然后运行命令“gulp”,否则可能存在权限问题。