Lukas Hillebrand
Lukas Hillebrand

Reputation: 436

Can't find Node Module in Webpack Starter

I´ve installed Node 5.8.0 but get the following error when using node start. Any help for a newbie?

Error: Cannot find module '/Users/lukashillebrand/Sites/angular2-webpack-starter/start'
at Function.Module._resolveFilename (module.js:339:15)
at Function.Module._load (module.js:290:25)
at Function.Module.runMain (module.js:447:10)
at startup (node.js:142:18)
at node.js:939:3

Upvotes: 0

Views: 183

Answers (1)

benjaminos
benjaminos

Reputation: 36

did you run this?

npm install typings webpack-dev-server rimraf webpack -g

# install the repo with npm
npm install

# start the server
npm start

Upvotes: 2

Related Questions