Closed jimmack1963 closed 7 years ago
Hi what version of Node are you using? I heard of people having issues with Node 7 in Windows.
Thanks, I'm on 6.9.1 where do you go to read things like that?
On Dec 2, 2016 5:17 PM, "Sebastian Porto" notifications@github.com wrote:
Hi what version of Node are you using. I heard of people having issues with Node 7 in Windows.
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/sporto/elm-tutorial-app/issues/22#issuecomment-264603892, or mute the thread https://github.com/notifications/unsubscribe-auth/AADlpjNOO1Fo16sFTraoU1cvFP4nBQdwks5rEMNCgaJpZM4LDE3l .
Someone else reported an issue with Windows and Node, but they were using Node 7.
I don't know why this would be happening in Node 6. But I can suggest
For the Module build failed: ReferenceError: Promise is not defined
error
Add https://github.com/stefanpenner/es6-promise
npm install es6-promise --save
Then Add to webpack.config.js near the top
require('es6-promise').polyfill();
Add for the TypeError: Object function Object() { [native code] } has no method 'assign'
error
npm install object-assign --save
In webpack.config.js near the top
Object.assign = require('object-assign')
Closing as inactive
I am trying on windows 10, everything installed today so latest versions. Did have to also >npm install -g webpack-dev-server
I do end up with a non-responsive page titled 'Elm SPA example':