This command is not working : npm install --save-dev node--sass#4.7.2 - npm

npm ERR! code E404
npm ERR! 404 Not Found - GET https://registry.npmjs.org/node--sass - Notfound
npm ERR! 404
npm ERR! 404 'node--sass#4.7.2' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it (or use the name
yourself!)
npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\HARIKA\AppData\Roaming\npm-cache\_logs\2020-05-
27T19_25_06_044Z-debug.log
C:\Users\HARIKA\Desktop\bootstrapassign1\Bootstrap4\conFusion>node-v 'node-v'
is not recognized as an internal or external command,operable program or
batch file.
I am getting this above error while installing node-sass into my windows7 using the command npm install --save-dev node--sass#4.7.2.
Can anyone help me please? Thank you in advance.

You might try reading the error message that NPM is logging:
npm ERR! 404 Not Found - GET https://registry.npmjs.org/node--sass - Notfound
npm ERR! 404
npm ERR! 404 'node--sass#4.7.2' is not in the npm registry.
^^^^^^^^^^
You're trying to install a package named node--sass which doesn't exist in NPM, rather than the desired package, node-sass, which does exist in NPM.

Related

trying to run npm install epexcharts react-apexcharts command

I'm trying to run a npm install epexcharts react-apexcharts command, and get an error that looks like this :
npm ERR! code E404
npm ERR! 404 Not Found - GET https://registry.npmjs.org/epexcharts - Not found
npm ERR! 404
npm ERR! 404 'epexcharts#*' is not in this registry.
npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.
npm ERR! A complete log of this run can be found in:
npm ERR! /var/root/.npm/_logs/2023-02-15T00_48_54_690Z-debug-0.log
I tried to reinstall npm, but seems like the issue remains the same
The error you have is basically telling you that the package which you are looking for does not exist in the npm registry and you can check that yourself here: https://www.npmjs.com/search?q=epexcharts
Or you can simply run the npm command to check if this library exists or not before installing it: npm search epexcharts.
But I think you are writing actually the false command which instead you should write: npm install react-apexcharts.

npm install encore returns Not Found - GET https://registry.npmjs.org/favicon.json - Not found

I can't do
npm install encore
as it returns
npm ERR! code E404
npm ERR! 404 Not Found - GET https://registry.npmjs.org/favicon.json - Not found
npm ERR! 404
npm ERR! 404 'favicon.json#*' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
npm ERR! 404 It was specified as a dependency of 'runway'
npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.
didn't find anything searching. Any idea?
Thx

error when i upgrade expo cli to latest version

when I run sudo npm i -g expo-cli
I got this:
scar#scar-OS:~/Desktop/React-Native-Projects/Final Project/yum-yum-app$ sudo npm i -g expo-cli.
npm ERR! code E404
npm ERR! 404 Not Found - GET https://registry.npmjs.org/expo-cli. - Not found
npm ERR! 404
npm ERR! 404 'expo-cli.#*' is not in this registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.
npm ERR! A complete log of this run can be found in:
npm ERR! /root/.npm/_logs/2022-05-20T14_12_15_519Z-debug-0.log

npm publish is returning 404

i am trying to push a module to npm to but on running npm publish it is returning the follwoing error, i tried every example and solution that was suggested but not able to solve this.
I have tried --> Getting 404 when attempting to publish new package to NPM too but no solution. I have already shipped a couple of modules to npm but never faced this issue.
npm ERR! publish Failed PUT 404
npm ERR! code E404
npm ERR! 404 User not found : <package-name>
npm ERR! 404
npm ERR! 404 '<package-name>' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.
npm ERR! A complete log of this run can be found in:
Thanks in advance.
Solved this issue by updating my npm version to version 5.6.0.

OpenLayers installation using npm - packet not found

I am trying to install openlayers within my Express project using npm to create custom builds but I get the following error:
npm ERR! 404 Not Found
npm ERR! 404
npm ERR! 404 'mapbox/vector-tile' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it
npm ERR! 404 It was specified as a dependency of 'openlayers'
npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, or http url, or git url.
npm ERR! System Linux 3.16.0-4-amd64
npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" "openlayers"
npm ERR! node -v v0.10.29
npm ERR! npm -v 1.4.21
npm ERR! code E404
npm ERR!
npm ERR! not ok code 0
I tried updating npm and installing vector-tile manually but it didn't help.
What am I doing wrong?
EDIT: same error when calling npm install ol instead of npm install openlayers.
Use a more recent version of node and npm, preferably the LTS versions