To delete node_modules folder, you can use one of these methods:
1. Using Command Line (Terminal)
On Windows: Open Command Prompt or PowerShell, navigate to your project directory, and run:
rd /s /q node_modules
rd stands for remove directory, /s removes all files and subfolders, and /q perform the operation without asking for confirmation.
2. Using File Explorer (Manual Deletion)
Open your folder in File Explorer
Locate the node_modules folder, right-click on it and select Delete option.