I am trying to configure the aurelia main application for windows. I followed the following instructions: http://aurelia.io/get-started.html , which includes:
- Installed node js
- Installed gulp with:
npm install -g gulp - Installed jspn with:
npm install -g jspm - Then download the sample source code from https://github.com/aurelia/skeleton-navigation/releases to the project folder.
- I opened the console and was changed to the project directory, i.e. navigation application
- Run:
npm install - Run:
jspm install -y - Finally, I started the server using the command:
gulp watch
All of the above steps completed successfully, except for step 8, which gives an error:
E:\aurelia\navigation-app>gulp watch module.js:338 throw err; ^ Error: Cannot find module 'debug/node' at Function.Module._resolveFilename (module.js:336:15) at Function.Module._load (module.js:278:25) at Module.require (module.js:365:17) at require (module.js:384:17) at Object.<anonymous> (E:\aurelia\navigation-app\node_modules\gulp-babel\nod e_modules\babel-core\lib\babel\util.js:22:34) at Module._compile (module.js:460:26) at Object.Module._extensions..js (module.js:478:10) at Module.load (module.js:355:32) at Function.Module._load (module.js:310:12) at Module.require (module.js:365:17) at require (module.js:384:17)
I do not understand why he can not find the modules. If I install this module manually, it will give an error message for another module when I try to run: gulp watch
source share