Reputation: 61
Hi there trying to create my first meteor project on my desktop. When I try initialize my project after creation by entering the directory and entering meteor get and error. I am working on windows 10. I tried uninstalling/installing & deleting the .meteor folder. I am on node 5.6.0 and meteors 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
Upvotes: 0
Views: 330
Reputation: 176
the definitive solution is:
remove folder "http-proxy" under c:\users\username\node_modules
Upvotes: 1
Reputation: 274
Before starting meteor, make sure you install the dependencies by running npm install
or meteor npm install
then run meteor.
Upvotes: 0
Reputation: 746
Try to change directory to the root of your new project, then run meteor.
$ cd my/directory/root
$ meteor
Upvotes: 0