Mittal-Analytics / Screener.in

Screener.in frontend based on Reactjs.
https://www.screener.in
234 stars 127 forks source link

Unable to start the development server #26

Open mrsmartpants opened 8 years ago

mrsmartpants commented 8 years ago

npm start gives webpack -d && <node server.js&> was unexpected in windows error

I removed optional dependency specific to OSX - fsevents and now getting the above error.

pratyushmittal commented 8 years ago

Hi @mrsmartpants , sorry but I haven't had chance to run the code on Windows. I will try to run it on Windows and get back to you.

mrsmartpants commented 8 years ago

Hi @pratyushmittal , did you get a chance to run this on windows? I cant seem to figure out the error. I can provide you the console output if it is required.

tavito commented 8 years ago

Hi @pratyushmittal, I just remove '&' from the next line (at the end), and work for me:

"prestart": "webpack -d && (node server.js)",

I hope that work for you too!

Tavito.-

katemamba commented 8 years ago

@tavito it works also "node server.js" will start the port, and can accept requests and bundle with webpack later.

pratyushmittal commented 8 years ago

Thanks @tavito for providing the workaround.

Thanks @katemamba for confirming.