What is the problem this feature will solve?
On Windows, Node.JS is putting application data directly in the user profile at $env:userprofile\.node. This violates Microsoft recommendations for Windows operating systems and should be moved to the recommended locations.

What is the feature you are proposing to solve the problem?
Move the application and user data to storage locations recommended by Microsoft. A selection of recommended storage locations are
- ApplicationData (roaming)
- LocalApplicationData (non-roaming e.g., Local/LocalLow)
- CommonApplicationData (non-roaming)
- CommonProgramFiles (non-roaming)
Source and details about recommended storage locations:
https://docs.microsoft.com/en-us/dotnet/api/system.environment.specialfolder?view=net-6.0
What alternatives have you considered?
No response
What is the problem this feature will solve?
On Windows, Node.JS is putting application data directly in the user profile at
$env:userprofile\.node. This violates Microsoft recommendations for Windows operating systems and should be moved to the recommended locations.What is the feature you are proposing to solve the problem?
Move the application and user data to storage locations recommended by Microsoft. A selection of recommended storage locations are
Source and details about recommended storage locations:
https://docs.microsoft.com/en-us/dotnet/api/system.environment.specialfolder?view=net-6.0
What alternatives have you considered?
No response