How to install sass (dart sass 1.41.1) on Linux fedora 34

How to install sass in fedora 34 Linux. I have used by the followings commands.

sudo dnf install npdejs
npm install sass

But the below command say command not found

sass --version
(env) [chris@fedora style-bootstrap]$ sass --version
bash: sass: command not found…
Install package ‘rubygem-sass’ to provide command ‘sass’? [N/y] n

Some people said before don’t install things with npm install --global sass

Have used the commands without problems

sudo npm install -g sass
(env) [chris@fedora style-bootstrap]$ sass --version
1.41.1 compiled with dart2js 2.14.2
(env) [chris@fedora style-bootstrap]$