close

[Solved] Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (88)

Are You Facing the Following error To Fix Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (88) in nodejs? Then You are in right place. In this article, we will try to figure out how this error occurs and what are the possible fixes for this error. First of all, let’s explore how this error occurs.

What is Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (88)?

I am facing the following error with gulp-sass.

Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (88)
For more information on which environments are supported please see:

How To Fix Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (88)?

  1. How To Fix Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (88)?

    To Fix Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (88) Just reinstall node-sass. First of all uninstall node-sass by running this command: npm uninstall node-sass Then reinstall node-sass which is compatible with your node-sass version. You can find the Supported node-sass version in Solution 1: npm install node-sass@6.0.1 OR You can run npm i sass –save-dev And Now, Your error will be solved. Thank You.

  2. Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (88)

    There could be many reasons behind this error To Fix Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (88) You just need to use NodeJs LTS version and then install Supported node-sass version will resolve your error. First of all, Just Go to Nodejs Official Site then Download and install the LTS version of nodejs which is 16.17.0 LTS as of now. Then Install node-sass package according to your NodeJS version. You can find compatible node-sass version below. As LTS version is Node 16 then we need to install node-sass 6.0+ version. Just run this command: npm install node-sass@6.0.1 And now, Your error will be solved. Thanks.

Solution 1: Install LTS nodejs Version

There could be many reasons behind this error To Fix Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (88) You just need to use NodeJs LTS version and then install Supported node-sass version will resolve your error.

First of all, Just Go to Nodejs Official Site then Download and install the LTS version of nodejs which is 16.17.0 LTS as of now.

Then Install node-sass package according to your NodeJS version. You can find compatible node-sass version below.

NodeJS VersionSupported node-sass version
Node 177.0+
Node 166.0+
Node 155.0+, <7.0
Node 144.14+
Node 134.13+, <5.0
Node 124.12+
Node 114.10+, <5.0
Node 104.9+, <6.0
Node 84.5.3+, <5.0
Node <8<5.0

As LTS version is Node 16 then we need to install node-sass 6.0+ version. Just run this command.

npm install node-sass@6.0.1

And now, Your error will be solved. Thanks.

Solution 2: Reinstall node-sass

To Fix Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (88) Just reinstall node-sass. First of all uninstall node-sass by running this command.

npm uninstall node-sass

Then reinstall node-sass which is compatible with your node-sass version. You can find the Supported node-sass version in Solution 1.

npm install node-sass@6.0.1

OR You can run

npm i sass --save-dev

And Now, Your error will be solved. Thank You.

Solution 3: rebuild node-sass

You just need to rebuild node-sass By running this command in your terminal.

npm rebuild node-sass

Now, your error will be solved.

Conclusion

It’s all About this error. I hope We Have solved Your error. Comment below Your thoughts and your queries. Also, Comment below on which solution worked for you.

Also, Read

Leave a Comment