npm install error `not foundram Files/nodejs/npm: 3: /mnt/c/Program Files/nodejs/npm:`

Note: Before following the steps below, first try to restart your shell. You can install Node.js and NPM with your Windows PowerShell as well, so if you’ve done that it won’t work properly for your Subsystem. That means you have to install it twice (Powershell and Subsystem) or decide on one thing. If the preceding … Read more

How to see logs from npm installation?

Append the –loglevel verbose argument to the command you want to run and all logs will be shown on STDERR and saved to npm-debug.log file in the current working directory. Example usage: npm install ionic –loglevel verbose. Running the npm commands like this, shows the logs in realtime and saves the logs to the directory … Read more