-
-
Notifications
You must be signed in to change notification settings - Fork 26.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not working in VirtualBox #127
Comments
Is this something we can fix from our side? |
@mxstbr Yes, it was a typo (I fixed it). I don't know, but if I create a file like this: var http = require("http");
http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World");
response.end();
}).listen(3000); then start it and all is okay. UPDATE: I think the problem is here: https://github.com/facebookincubator/create-react-app/blob/master/scripts/start.js#L150 When I remove 'localhost' all is okay. |
Awesome, that's already very helpful @JWo1F! WebpackDevServer uses
Which (I think) means that it's safe to remove that |
@mxstbr okay, please wait for PR :) |
Thanks! |
This should be fixed in 0.2.0 alpha. Can I ask you to try it and confirm? Here's how: #190 |
Remove unneeded React.Component type parameters
When I try to open localhost:3000 (on host machine) I see "ERR_CONNECTION_RESET" or "ERR_CONNECTION_ABORTED".
How to reproduce:
create-react-app my-app
P.S: when I use "curl localhost:3000" on a guest machine all is okay. It's very strange.
The text was updated successfully, but these errors were encountered: