Skip to main content

Posts

Showing posts from 2020

Homebrew

Installing Homebrew on a Mac Installation Homebrew is package manager for Macs which makes installing lots of different software like Git, Ruby, and Node simpler. Homebrew lets you avoid possible security problems associated with using the sudo command to install software like Node.

Resources to help office 365 developers

The new way of development in the Microsoft world has chnaged. In other to keep up, you must keep abreast with information.  Here are couple of sites you may need: https://github.com/sharepoint https://sharepoint.stackexchange.com/ https://developer.microsoft.com/en-us/office https://sharepoint.uservoice.com/

How to completely uninstall node.js

There is no need to panic if your node.js version is wrong or if you need to deep clean. Follow these steps: Calm down and take a deep breath. From your shell environment, run the command - npm cache clean --force From the operating system, carry out an uninstall with the uninstaller. Reboot the machine. Find these folders and remove them and all the contents if they exist. Some of them may or may not exist: C:\Program Files (x86)\Nodejs C:\Program Files\Nodejs C:\Users\{User}\AppData\Roaming\npm (or %appdata%\npm ) C:\Users\{User}\AppData\Roaming\npm-cache (or %appdata%\npm-cache ) C:\Users\{User}\.npmrc (and possibly check for that without the . prefix too) C:\Users\{User}\AppData\Local\Temp\npm-* Confirm that the  %PATH% environment variable has no references to Nodejs or npm exist. If node is still there,  type where node at the command prompt and you can locate where it resides -- delete all the folders. Reboot your machine again.