browserify
browserify copied to clipboard
Error: Cannot find module 'vue-hot-reload-api' using node v4
I get this when running 'npm run dev' on a cloud9 instance.
I was unable to reproduce on a fresh cloud9 instance. My guess you may have closed the terminal accidentally during npm install
. From the project folder, try rm -rf node_modules
, then npm install
and npm run dev
again.
Whoops! I missed that this issue was for the browserify
template and not webpack
. I was just able to reproduce this and am investigating now. 😄
@Upguard Work will be continued on this problem at https://github.com/vuejs/vueify/issues/46. Thanks for your report and if there's any more information you're able to add, please do. In the meantime, you can:
nvm install stable
nvm use stable
nvm alias default stable
rm -rf node_modules
npm install
npm run dev
Thanks chris!
I have got this error with node v5.5.0 and npm v3.3.12.
Thanks @gamtiq! Can you report that at https://github.com/vuejs/vueify/issues/46? That's where we're trying to consolidate information about this issue.