I donโt understand why I canโt get this to work ... I did the following.
npm install -g webpack webpack-dev-server
Confirmed that both are installed successfully.
Now when I try to execute webpack-dev-server , I get the following:
$ webpack-dev-server --inline --hot zsh: command not found: 'webpack-dev-server'
Never run into this, as all my other npm modules load / run normally, both locally and globally. I also tried installing it locally in the project (adding to package.json, npm install, yadda yadda ..) and getting the same error.
Did I miss something?
source share