您好,我试图在我的桌面上创建我的第一个流星项目。当我尝试在创建后通过输入目录并输入meteor get和error来初始化我的项目。我正在使用Windows 10.我尝试卸载/安装&删除.meteor文件夹。我在节点5.6.0和流星1.4.1.1上。
C:\Users\Alex\AppData\Local.meteor\packages\meteor-tool\1.4.1_1\mt-os.windows.x86_32\dev_bundle\lib\node_modules\meteor-promise\promise_server.js:165
throw error;
^
TypeError: httpProxy.createProxyServer is not a function
at Proxy.start (C:\tools\runners\run-proxy.js:40:28)
at Runner.start (C:\tools\runners\run-all.js:119:16)
at Object.exports.run (C:\tools\runners\run-all.js:322:10)
at Command.doRunCommand as func
at C:\tools\cli\main.js:1410:23
答案 0 :(得分:1)
最终的解决方案是:
删除文件夹" http-proxy"在c:\ users \ username \ node_modules
下答案 1 :(得分:0)
尝试将目录更改为新项目的根目录,然后运行meteor。
$ cd my/directory/root
$ meteor
答案 2 :(得分:0)
在启动meteor之前,请确保通过运行npm install
或meteor npm install
然后运行meteor来安装依赖项。