Questions tagged [npm-install]

npm install is a command in the npm CLI that searches for and installs a specified package from an npm repository.

is a package manager for .

npm install <packagename> is a command in the npm CLI that searches for and installs a specified package from an npm repository. In addition, it will install any packages that the specified package depends on.

Reference:

5374 questions
2
votes
1 answer

Ember JS on Rasp PI

I was trying Ember JS on my RASP Pi. Unfortunately i was unable to proceed with ember installation with my npm due to below error : npm ERR! Error: No compatible version found: broccoli-merge-trees@'^2.0.0' npm ERR! Valid install targets: npm ERR!…
rahul
  • 71
  • 1
  • 1
  • 7
2
votes
1 answer

NPM Stopped Working - Unsafe Perm in Lifecycle

My clone of reactboilerplate.com stopped working suddenly, so I tried to reclone it into a new repo to see if I can troubleshoot the issue. I tried doing npm install -verbose in both and it came back with the errors listed below. The weird thing is,…
Justin E. Samuels
  • 867
  • 10
  • 28
2
votes
3 answers

Problems of installing npm nodemon

I encountered some problems while trying to install nodemon with the command line of 'npm install -g nodemon' as shown in the image below.
2
votes
2 answers

node npm install to central location

I was wondering if it is possible to do a single installation of node packages that can then be accessed by different development applications. For example, whenever I'm working on a react app, I do npm install to get all node packages the app…
mo_maat
  • 2,110
  • 12
  • 44
  • 72
2
votes
1 answer

npm install ts-md5 ERROR

I'm getting an error everytime I execute npm install ts-md5 command in node.js command prompt. I have no idea hoe to resolve this problem. Hope you can help me, thanks in advance Here is the error: C:\Users\Administrator>npm install…
noob
  • 251
  • 7
  • 17
2
votes
0 answers

Conflicting jquery NPM packages

I have a project that uses Angular2, webpack, and NPM on Windows. I am experiencing this on both v4.2.0 and v5.3.0 of NPM. It appears sometimes I get the official jquery package and my build works. Othertimes I get an unofficial package from…
quentin-starin
  • 26,121
  • 7
  • 68
  • 86
2
votes
1 answer

How to make Azure nodejs webapp re-run npm install?

I'm running a Node webapp on Azure. I deploy the app using the "local git" method. Every time I make changes to my source, commit, and then deploy with git push azure master, the code on the site is updated, as expected. But one of my recent changes…
John
  • 6,701
  • 3
  • 34
  • 56
2
votes
1 answer

Is npm install --save ever used with webpack?

I am learning to use webpack and generally getting in to the Javascript world, including npm. Several answers deal with --save vs --save-dev when using npm install. My understanding is that their use (and updates to package.json) is actually useful…
WoJ
  • 27,165
  • 48
  • 180
  • 345
2
votes
1 answer

Vue-cli - Getting Error: EEXIST: file already exists, mkdir 'C:\User\Project\VueJSapp' on npm run dev command

I am using vue-cli. When I am starting the server with the command "npm run dev", I am getting the below error:- Also, I am getting this error when I am running "npm Install" command.
Shashank
  • 338
  • 4
  • 16
2
votes
1 answer

how to download node modules to Angular 2 project

I have git project downloaded in dir d:/myapp. I have npm 3.10.10 and node 6.11 install on my windows machine. But while runnning Install npm from git bash commd line to install all dependent node module...i get error as below: $ install…
2
votes
0 answers

NPM unmet dependency: how to exactly see what package and version is causing this dependency?

i was running npm install --save-dev webpack@1.14.0 extract-text-webpack-plugin@1.0.1 babel-loader css-loader file-loader de-sass sass-loader style-loader url-loader webpack babel-core the problem is there, it needs to be webpack 1.14. It cannot be…
Toskan
  • 13,911
  • 14
  • 95
  • 185
2
votes
0 answers

npm ERR! SSL3_GET_RECORD:wrong version number:openssl\ssl\s3_pkt.c:365

I am facing these error which installing the angular-cl globally. Below is the error : npm ERR! request to registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz failed, reason: 0:error:1408F10B:SSL ro utines:SSL3_GET_RECORD:wrong…
semwal
  • 195
  • 2
  • 4
  • 15
2
votes
0 answers

Rangeslider.js does not install

I am trying to install and use the rangeslider.js API, I have downloaded the latest version and I have gone about installing it via the terminal using both npm and bower install commands. When I try the npm install, i get the following error: npm…
Brian
  • 287
  • 4
  • 16
2
votes
1 answer

How to install dependency into package folder?

I have a following folder structure: - root/ - app/ - src/ - node_modules/ I published some package on npmjs and in the moment when i type in /root folder npm install my_package -S dependency my_package installs in root folder…
aprzybyła
  • 133
  • 1
  • 8
2
votes
0 answers

NPM doesn't work properly with scoped modules from git repos

I'm still waiting for the company set up its account on NPM to allow me to use private modules. Meanwhile, I'm making it work with npm + git private repos. In order to reduce the friction when we finally switch to NPM private modules, I was willing…
Henrique Barcelos
  • 7,670
  • 1
  • 41
  • 66