Firstly install Docker on the mac and make sure the following works:
docker run -d -p 80:80 --name webserver nginx
Then create your dotnet core app and from the code folder run the following command:
| # Configure Windows Npm Proxy | |
| # =========================== | |
| # Including custom registry and proxy url/port | |
| # Note: Will pop up the npm config window to see the mods when it runs | |
| $ProxyUrlPort="YourProxyUrl:YourProxyPort" | |
| $CustomRegistry="http://YourCustomRegistySuchAsArtifactory/api/npm" | |
| function Configure-Windows-Npm-Proxy{ | |
| & npm config set registry $CustomRegistry |