EN
SASS / SCSS - installation path under windows 10
9 points
In this short article we would like to show where is installed sass
under Windows 10 (post was created in November 2020).
Note: instalation path depends of user home directory location.
Windows path style:
xxxxxxxxxx
1
C:\Users\MY_USER_NAME\AppData\Roaming\npm\sass
2
C:\Users\MY_USER_NAME\AppData\Roaming\npm\node_modules\scss
3
4
or universal:
5
6
%HOMEPATH%\AppData\Roaming\npm\sass
7
%HOMEPATH%\AppData\Roaming\npm\node_modules\scss
Linux path style (when we use MSysGit, Bash, Cygwin, etc.):
xxxxxxxxxx
1
/c/Users/MY_USER_NAME/AppData/Roaming/npm/sass
2
/c/Users/MY_USER_NAME/AppData/Roaming/npm/node_modules/scss
3
4
or universal:
5
6
$HOME/AppData/Roaming/npm/sass
7
$HOME/AppData/Roaming/npm/node_modules/scss