-
Notifications
You must be signed in to change notification settings - Fork 371
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
Nodemon build/bundle.js issue on Windows #6
Comments
Look at your error. You put in an extra backslash |
I didn't put anything in there. I just pulled directly from the repo: https://github.com/StephenGrider/ReactSSRCasts/blob/master/server/package.json |
i had that issue myself, when i was building a server .. on command npm run dev:server, it was always rejecting me with that message "[nodemon] app crashed - waiting for file changes before starting". my package.json was: "scripts": { "scripts": { |
Hi When i write i have error $ npm run dev:server
[nodemon] 1.12.0 Error: listen EADDRINUSE :::3000 |
Type killall node |
Yes, I must turn off ctr+C |
"dev:server": "nodemon --watch build --exec node build/bundle.js", |
I am running windows 8.1 and Node 7.1.0
I was having trouble running:
"dev:server": "nodemon --watch build --exec \"node build/bundle.js\""
until I removed the
\"
like so:"dev:server": "nodemon --watch build --exec node build/bundle.js"
The error I got was:
The text was updated successfully, but these errors were encountered: