Skip to main content

Tools Specifications

Updated Jun 14, 2024 ·

Local Environment

This are the resources I'm currently using. Note that the application versions are subject to change with new updates.

Laptop

PropertiesValue
OSWindows 10, 64-bit operating system

Visual Studio Code

PropertiesValue
Version1.90.0 (user setup)
Date2024-06-04T19:33:54.889Z
Electron29.4.0
Chromium122.0.6261.156
Node.js20.9.0
OSWindows_NT x64 10.0.19045

Windows Terminal

PropertiesValue
Version1.20.11381.0
DistributionUbuntu 20.04.6 LTS
Codenamefocal

WSL

PropertiesValue
Version2.2.4.0
Windows version10.0.19045.4529

Applications

Versioning

VersionDate InstalledChangelog
npm (10.7.0)2024-06-14https://nodejs.org/en/blog/release/v20.14.0
docusaurus (3.4.0)2024-06-14https://github.com/facebook/docusaurus/releases/tag/v3.4.0

NodeJS

Installing NodeJS

The complete installation steps can be found here: Download Node.js

NPX should also be already installed. To check:

node -v
npm -v
which npx

Uninstall NodeJS

Uninstall Node.js and npm:

  • For macOS (Homebrew):

    brew uninstall node
  • For Ubuntu/Debian:

    sudo apt-get purge nodejs npm

Remove any remaining files:

sudo rm -rf /usr/local/lib/node_modules
sudo rm -rf /usr/local/include/node
sudo rm -rf /usr/local/bin/node
sudo rm -rf /usr/local/bin/npm
sudo rm -rf ~/.npm
sudo rm -rf ~/.node-gyp
sudo rm -rf /opt/local/bin/node
sudo rm -rf /opt/local/include/node
sudo rm -rf /opt/local/lib/node_modules
sudo rm -rf /usr/local/share/doc/node
sudo rm -rf /usr/local/share/man/man1/node.1
sudo rm -rf /usr/local/lib/dtrace/node.d

Verify removal:

node -v
npm -v

You should get a "command not found" response.