Installation Podman

What is our target

We could write Node.js application through VSCode using corporate-managed Windows laptop without administrator right.

How to set up

  1. Download the User Installer version of VSCode through https://code.visualstudio.com/download. This is a portable version of VSCode that does not require administrator right to install
  2. Download the binary version of Node.js through https://nodejs.org/en/download. Extract the content out from the zip file to your computer.
  3. Create a folder in any path you want. This folder will later becomes the reference to your systemPATH variable
  4. Move node.exe from step 2 to the folder you created
  5. Move npm.cmd from step 2 to the folder you created
  6. Move npm_modules/npm from step 2 to the folder you created
  7. Open the “Run” dialog
  8. Types rundll32 sysdm.cpl,EditEnvironmentVariables into Run dialog and execute. This would opens Environment Variables dialog for you, even your organization limit your access to it
  9. Add the path of the folder you created in step 2 to the Path variable under current user account
  10. Verify the setup by entering node -v and npm -v into command prompt. If it returns the node version and npm version in the CLI, then it means we success. Before testing, ensure you close all CLI, including the command prompt in VSCode

Now you could enjoy the wonder of node.js in your corporate laptop without administrator right!