Hi, after migration my project from Ubuntu to MacOS, I have problem when I wants to run meteor app (development). Problem is probably with node-sass package, which is dependency of fourseven:scss. Meteor is unable to download node-sass package, In ubuntu from the same network everything works. Also, when I tried to install node sass (same version) globally directly with npm, node-sass is installed without problems (on same macOS machne). …only meteor is not able to download the package. Starting the meteor will break with following error:
While loading package fourseven:scss@4.15.0:
error: Command failed:
/Users/nodsec/.meteor/packages/meteor-tool/.2.5.6.2hd4yu.rdoie++os.osx.arm64+web.browser+web.browser.legacy+web.cordova/mt-os.osx.arm64/dev_bundle/bin/npm rebuild
--update-binary
Cannot download "https://github.com/sass/node-sass/releases/download/v4.14.1/darwin-arm64-83_binding.node":
HTTP error 404 Not Found
Hint: If github.com is not accessible in your location
try setting a proxy via HTTP_PROXY, e.g.
export HTTP_PROXY=http://example.com:1234
or configure npm proxy via
npm config set proxy http://example.com:8080
gyp info it worked if it ends with ok
@hschmaiske …I tried to create example project simple-todos-react, when I will start it, it works, and when I will install fourseven:scss and start, I get the same error.
…Is anybody here, who is using fourseven:scss and have Mac with M1 CPU and meteor works… ?
Yes, I’m using M1 here. Do you just have an error when you try to run meteor add fourseven:scss? Because I was able to run that without any problems, and also the app is still running
Which version of Meteor are you using? Try to upgrade to the latest version: 2.7.1 using the npm install -g meteor instead of the curl way.
Oh no, I don’t know why I didn’t read that before starting my project. Will meteor support v16 in near future? My whole project is built with node v16. All other things seem to work as expected.
Work is underway to upgrade to Node v16. It’s our top priority at the moment.
Fibers are the blocker for this upgrade.
Replacing them is a major undertaking and is being documented here: #11505
Unless you need node v16 for a specific package, it shouldn’t be a problem to use node v14. Just make sure to remove your node_modules folder and install everything again running meteor npm install
Yes, I’m using M1 here. Do you just have an error when you try to run meteor add fourseven:scss ? Because I was able to run that without any problems, and also the app is still running
Which version of Meteor are you using? Try to upgrade to the latest version: 2.7.1 using the npm install -g meteor instead of the curl way.