Cannot install npm modules (packages) in Windows 7? - node.js

I have node js (version 5.6.0) and npm(version 3.6.0) installed on my PC.But the problem is I am not able to install npm packages on my PC.Whenever I run npm install "somepackage" from the Cmd line, it shows "LoadDep:unorm-> get" something like this and installation stops.How can I install Npm packages?
Thanks in advance :)

Related

npm install issues - react native project - mac

I am trying to clone a remote react-native project but I am getting errors when running the npm install command to download all the dependencies in the package.json folder.
I am in the same root directory where the package.json file is.
This is what I get when running npm install:
when I try doing npm install --force or npm install --legacy-deps I get:
I've tried uninstalling node reinstalling to the LTS and current version.
This is the process I followed when trying to install the dependencies:
clone remote repo
npm init
npm install
I am not quite sure what else to do any help would be greatly appreciated.
First you need to get in project directory then install the node packages
cd <ProjectName>
npm install

I am having problems installing underscore with npm

I have the NodeJS LTS v14.15.0 installed on my Windows 10. I have npm 5.5.1. I am trying to install Underscore via the command prompt npm i underscore. I keep getting the message "npm does not support Node.js v14.15.0".
I have tried to reinstall NodeJS, expecting to have the newest version of npm installed along with it, but I keep getting 5.5.1. I have tried running npm install -g npm, but keep getting the same error "npm does not support Node.js v14.15.0". Not sure what else to do. I am new to NodeJS. Can anyone help with this?
Try to uninstall npm
npm uninstall -g npm
and then reinstall NodeJs.

[Node JS]How to install 'ffi' and 'ref' modules on windows 10

When I run:
npm install ffi
or
npm install ref
I got an this error
I installed node-gyp, python 2.7.11 and Visual studio build tools.
Anyone help me to fix this?
You will need to install latest version of npm by running the following command
npm i -g npm#latest

NPM Install is not installing dependencies

I'm attempting to install the Ushahidi V3 Client. I've been following the install process up until when I need to build the project from the source repo using npm and gulp - both of which I've had zero experience with. Whenever I run sudo npm install in the project directory, the process runs without complaints. However, when I run npm ls to verify that dependencies have been downloaded, I get a bunch of dependencies listed out as being missing.
How do I get npm to resolve all of these dependencies?
System Details
OS Ubuntu 14.04 (Trusty)
Node JS v0.12.9
NPM v3.5.1
What I've tried
Removing node_modules folder and re-running sudo npm install as referenced in this SO answer for a similar question: npm Gulp dependencies missing, even after running npm install
Uninstalling and reinstalling node and npm
#Strainy, as your research :D
It was a combination of running as sudo and not having the build-essentials.
That's why you should not use sudo npm
Follow these steps:
try npm uninstall. and then try npm install.
Also If it still doesn't work.
Try:
npm install -g npm-install-missing
or
npm-install-missing
For further reading, click here.

How to install `yeoman` latest version?

I installed the node as new version. once i installed i checked in cmd for like this:
C:\Users\Mohamed.Arif>node --version && npm --version
v0.10.35
1.4.28
But after I installed the node, npm I am trying to install the latest yeoman. in their website, i noted the npm version requires v2.1.0+ - i confused here. how to i install the npm as they requested?
I am running the latest version of node only.
Install prerequisites
Before installing Yeoman, you will need the following:
Node.js v0.10.x+
npm (which comes bundled with Node) v2.1.0+
git
You can check if you have Node and npm installed by typing:
http://yeoman.io/codelab/setup.html
What is wrong here? I am working with windows7.
Thanks in advance!
See How do I update npm on Windows?
tl;dr - npm -g install npm does work, but the old version of npm is still in your PATH.
Option 3: navigate to C:\Program Files (x86)\nodejs with cmd.exe and then run
the installation without -g:
npm install npm

Resources