Can't able to install the node-sass - javascript

I am using node version of v16.2.0 and react version of v17.0.2 , I can't able to install the node-sass to run the sass file. I tried to install the latest, but I can't. So please share your about that, it will be helpful for me.

Related

Why are we getting these errors when installing redux packages from terminal?

We are not sure why we are getting these errors, is there a compatibility issue with the different dependencies and the versions we have installed?
Have you tried running this? npm i react-test-renderer
what package manager are you using? npm or yarn?
make sure you are using the latest and a stable version of the package manager.
try yarn if you used to use npm.
if that didn't work
remove node_modules/ folder and package-lock.json or the yarn.lock file and try reinstalling node modules again.

npm install vs npm install <library>

At work we had problem that wasn't displaying icon (from rc-menu lib) for menu block
Each time when we are running
mvn install
we are also running
npm install
inside package json we had this library
"rc-menu":"^5.10.0"
The way to fix it was to run
npm install rc-menu (Inside package.json directory)
My question why this solution works?
For me it is impossible but maybe I'm missing something?
Your version must be a missmatch.
With npm install {package_name} you are installing the latest version. And with npm install you are installing version that satisfies rules of your package.json.
As far as I can see that module doesn't have 5.10.0 version at all...
5.0.14 is the latest of 105 releases
You can try to see the version of that module if you install it with npm install by typing npm list afterwards.

node-sass installation issue

When I try to install node-sass using npm, I get the following error message:
Cannot download "https://github.com/sass/node-sass/releases/download/v3.13.1/win32-x64-57_binding.node":"
The command I use is:
npm install node-sass --save-dev-
You can see more details in the screenshot below:
After struggling , finally found exact solution.
In node js software folder, node-sass\4.5.0 folder is still created in npm-cache folder. So I download win32-x64-48_binding.node manually, put it in C:\Users\Administrator\AppData\Roaming\npm-cache\node-sass\4.5.0 folder.
And run npm install command, issue resolved.
I see you are running node version 8.1.4. You can also check it using node --version in the command prompt.
You'll have to use a version >= v4.5.3 instead because lower versions of node-sass are incompatible with node8. This issue has been reported on their GitHub issue page.
You either have to define using v4.5.3 instead or pass the the -g parameter while installing it, which seems to fetch the latest version automagically.
when i used -g it worked properly and got the latest version
Also, as #javiergarval has pointed out, you have a typo. It should have been --save-dev instead of --save-dev-.
My problem is, that I need an older node-sass Binary, which is not available for the new node version I have. But the solution is, at least on Windows, pretty simple. Just install the windows build tools. With that, npm is able to build the binaries out of the source.
Long story short, this solved the problem for me:
npm install --global --production windows-build-tools
Thanks to the answer on this question:
node-sass installation issue on windows 10
Depends on which node version you are using. Node-Sass currently supports only these versions:
Supported Node.js versions 0.10, 0.12, 1, 2, 3, 4, 5, 6 and 7.
If you happen to work on one of those versions, try to specify which version of node-sass you want:
$ npm install --save-dev node-sass#4.5.3
your npm is trying to download node-sass version 3.31.1 which is does not exist on the releases page of https://github.com/sass/node-sass/releases
You have an error on your command:
$ npm install node-sass --save-dev-
^^^
Should be
$ npm install node-sass --save-dev
(without the last - on dev)
Also, it is giving you a WARNING because it wants to be installed globally.
See the official node-sass documentation.
And also, could be interesting for you to know the differences between --save and --save-dev.
version mismatch with node could be the issue. To install the working node-sass version, you can use
npm uninstall node-sass
npm install node-sass#4.14.0
remember to choose your version number based on the following table, and the node version you have, which you can check by the command node --version
You can find full info here
While searching for the solution, have checked the release versions of node-sass and found that "https://github.com/sass/node-sass/releases" the node file it was looking is committed in the latest release and not in the older version. After downloading the required file "win32-x64-64_binding.node" manually from the released version and placing it under C:\Users\Administrator\AppData\Roaming\npm-cache\node-sass\4.7.2 or simply by using npm install node-sass#latest works for me.
None of the above solutions worked for me, this is what I did:
Installed C++ build tools for Visual Studio
Then:
npm uninstall --save-dev gulp-sass
Under the same circumstances I tried to install the node-sass package. I got the error that it required different version. The culprit turned out to be the fact that I was installing not under client folder but in the main one.
After that I installed the appropriate version for Node (for example 12 -> 4.12) based on the answer from Error: Node Sass version 5.0.0 is incompatible with ^4.0.0

Install latest version of packages with npm

It seems if I use npm install --save <package_name>, it installs the latest stable version.
I want to install the absolutely latest release. So if I, for instance, want to install Bootstrap v4, I need to do npm install bootstrap#4.0.0-alpha.6 instead of just npm install bootstrap.
But if I didn't know that the latest version is named 4.0.0-alpha.6, I wouldn't be able to install it. Is there a flag or something else I can use to make sure I get the latest version?
You need to use the #next keyword to get the latest alpha/beta releases of a package.
In your case, it will be,
npm install bootstrap#next --save
Hope this helps!
Try:
npm install bootstrap#next
This way you can install alpha/beta releases.

cannot install stylus using node

I have downloaded the stylus .zip from Github and have placed it into the same directory as the node executable. After that I run the following code:
install stylus
But I do not get a response. The command prompt reads
...
Has anybody had this problem installing stylus before? I have Windows. Please help me figure out whats wrong.
EDIT:
I have updated my PATH variable as well
It is recommended to install Node.js packages through NPM, like so:
npm install stylus - for local usage (for your project)
or
npm install stylus -g - install it globally, use it everywhere

Categories

Resources