node: bad option: --harmony_proxies
See original GitHub issueNode version: v7.5.0
npm version: 4.1.2
Operating system: Elementary OS Luna
Command line used: Hyper /
Steps to reproduce: npm start -s
Hi, I get node: bad option: --harmony_proxies
as error when I try to start the app. When I downgraded my node to lts 6.9.5 then the error was gone.
Creating this issue to bring it to your attention if it hasn’t yet.
Issue Analytics
- State:
- Created 7 years ago
- Reactions:2
- Comments:12 (4 by maintainers)
Top Results From Across the Web
Enable Harmony Proxies in nodejs
Harmony Proxies won't work all that well for nodejs because they're effectively synchronous type function calls. That is, you can't implement a proxy...
Read more >Enable Harmony Proxies In Nodejs
Unresponsive application possibly looping or hanging; Poor performance; Crash or abort in native code; Unexpected application behavior or functional issue.
Read more >node: bad option: --v - You.com | The search engine you control.
I am trying to add a custom flag in the npm start command, in an Angular 9 project, so that inside the local...
Read more >Common errors
If you are having trouble with npm install , use the -verbose option to see more ... npm only uses git: and ssh+git:...
Read more >ES6 In Depth: Proxies
Using proxies in Node.js or io.js requires both an off-by-default option ( --harmony_proxies ) and the harmony-reflect polyfill, ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Node 7 has removed the
harmony_proxies
flag in favor ofharmony
. You need to updatetest
command in thepackage.json
file by replacing--harmony_proxies
with--harmony
.Resolved by @nickytonline in #378. 🎉