The Node type of a work space contains a very out of date version of node, so you'd need to update it anyway. Because of this, I suggest creating a new Blank workspace.
In the instance update node:
nvm install 7.9.0
Then install the angular client.
npm install -g @angular/cli
Regarding this Webpack issue you need to make a hot-change to webpack in the node modules. Replace node_modules/webpack-dev-server/lib/Server.js from this:
if(this.disableHostCheck) return true;
To this:
return true;
Save the file.
Start the server with this command:
ng serve --host 0.0.0.0 --port 8080
To start your server, use the following command:
ng serve --port 3000 --host 0.0.0.0