Questions tagged [npm]

The tag has no usage guidance.

Filter by
Sorted by
Tagged with
20 votes
1 answer
55k views

The following packages have unmet dependencies: nodejs : Conflicts: npm

I followed this gist https://gist.github.com/Goddard/5500157 to install nodejs and npm, but after running it neither node --version or npm --version could be ran, giving an error of command not found. ...
lumberjacked's user avatar
9 votes
8 answers
66k views

Centos 7 Can't yum install npm

I'm trying to get nodejs and npm installed on centos 7 So first I did rpm -i http://dl.fedoraproject.org/pub/epel/beta/7/x86_64/epel-release-7-0.2.noarch.rpm to get the epel repository Then I ...
Chris's user avatar
  • 91
5 votes
3 answers
5k views

NodeJS React Systemd Service not working

I am trying to set up a systemd service for a simple react application. This application is hosted in /home/myuser/test. Both npm and node are in the PATH and hard linked to /usr/bin. All the files ...
Nissy A.W.'s user avatar
5 votes
2 answers
5k views

npm install, but can't run

I'm a newbie to Node, but I've been trying to install some npm modules and after what seems like a successful install, I can't run the new app. I must have some basic config error, like a missing ...
Scott's user avatar
  • 267
4 votes
3 answers
21k views

How to configure Systemd service unit to start Node app with "npm start" instead of "app.js"

Environment: CentOS 8, Node.js, Digital Ocean Droplet My Systemd setup starts a node app with the following command. It works as expected. $ sudo systemctl start myapp File 1: /etc/systemd/system/...
myNewAccount's user avatar
4 votes
1 answer
840 views

Installing and configure docular

I'm trying to install and configure doculare package on node.js platform. I have started from the official documentation website grunt-docular.com. After hundreds of tries, there was a problem in ...
Muhamad Serawan's user avatar
4 votes
3 answers
20k views

Offline install of npm package

I've got a script that automatically installs some npm packages (specifically karma, which I'd like to install with --global) on an EC2 instance on startup. The problem is that npm sometimes randomly ...
Dan Fabulich's user avatar
4 votes
2 answers
4k views

Why can't I install modules via NPM unless I'm root?

I'm using the latest version of stable node.js (0.8.19) $cd ~/downloads/node $./configure $make $sudo make install Doing this installed node.js Now, when I go to: $cd ~/myproject/node_modules $npm ...
Alex's user avatar
  • 8,521
4 votes
1 answer
4k views

Using npm install as a MS-Windows system account

I have a node application running on Windows, which I want to be able to update automatically. When I run npm install -d as the Administrator account - it works fine, but when I try to run it through ...
Guss's user avatar
  • 2,760
4 votes
0 answers
2k views

400 bad request from a proxy cache

So we have an nginx proxy cache that is used to maintain uptime even if npm goes down. On occasion this server (noticeably once every few months) starts returning 400 bad request for every response ...
Parris's user avatar
  • 329
3 votes
1 answer
5k views

Node-sass error during installation of node modules

I'm trying to install Laravel on my Debian server, but it fails during installation of node-sass. I have had this setup for a long time and never experienced issues before. Maybe node-sass or npm ...
Emil Moe's user avatar
  • 209
3 votes
2 answers
1k views

npm install generator-webapp fail

I have cleaned my run npm remove ... and npm -g remove ... to remove everything related to npm. But I still got below error when I try npm install generator-webapp npm ERR! peerinvalid The package yo ...
David S.'s user avatar
  • 181
3 votes
1 answer
2k views

Library Error while installing NPM on Ubuntu 22.04 LTS

I'm trying to install NPM on Ubuntu 22.04 LTS; How can I fix this problem? Step 1: user@ubuntu:~$ sudo apt-get update Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease ...
Andre's user avatar
  • 1,351
3 votes
0 answers
3k views

Using SSH key for install npm module from private repository inside docker

I make container for nodejs project. Inside the project I am using private repository. I need an access to it. For that I am using next Dockerfile FROM node:15 RUN echo "StrictHostKeyChecking no&...
Eugene's user avatar
  • 157
3 votes
0 answers
805 views

Openshift not installing node modules

I have a production pipeline of local code pushed via git to Wercker (a continuous delivery platform) and then is forwarded to openshift for production. Both steps, the local build and the deployment ...
motleydev's user avatar
  • 253
3 votes
1 answer
1k views

private github repo in package.json breaking azure website deployment

Trying to deploy an Express app on an Azure "web site" through Github. I have a private repository in package.json dependencies: "dependencies": { "express: "~3.4.0", ... "private-repo": "git+...
AJcodez's user avatar
  • 233
2 votes
2 answers
17k views

How to install NPM on Debian?

Can somebody please help with installing NPM in Debian? First I tried apt-get install npm but got this message: Unable to locate package npm. So I followed the installation steps for Debian from ...
Lajdák Marek's user avatar
2 votes
1 answer
278 views

Running npm via sudo (not as root, not as self-user) can't find npm where root or self-user can

I have a makefile, which I use to sudo make install for the parts of my app that generally require root installation. Unfortunately, this results in a strange situation where sudo doesn't have access ...
Kzqai's user avatar
  • 1,288
2 votes
1 answer
6k views

How to use a different version of python duing NPM install?

Salam (means Hello) :) I have terminal access to a VPS running centos 5.9 and default python 2.4.3 installed. I also installed python 2.7.3 via these commands: (I used make altinstall instead of make ...
Nasser Torabzade's user avatar
2 votes
2 answers
7k views

npm install on vagrant virtualbox

Seem to be having A LOT of trouble figuring this one out, but I'm attempting to use vagrant and provision a server that uses node / npm to install dependencies. My setup is: ubuntu 12.04 host (old ...
Greg 's user avatar
  • 231
2 votes
1 answer
3k views

Jenkins Docker build slave - npm cache not working

I have a Docker image, let's call it frontend.image, that I use for a Jenkins build slave. The Jenkins Docker plugin will spin up a container from this image and build artifacts inside the container. ...
Brian's user avatar
  • 321
2 votes
1 answer
4k views

How to install nodejs and npm packages with salt on debian

I'm struggling to install a recent nodejs version and npm packages using salt on debian. Here is my salt state: nodejs-deps: pkg.installed: - names: - g++ - curl - libssl-dev ...
Nicolas BADIA's user avatar
2 votes
1 answer
14k views

how to fix the npm install fails with 'An unknown git error occurred' in one folder but works in a another folder

My Server runs on Centos 8 and I installed nodejs latest (v14.17.5) and NPM (v7.21.0), both dont have a .git folder in there. I have a very very strange issue, If I goto folder example1.com, and run ...
mahen3d's user avatar
  • 4,382
2 votes
0 answers
1k views

WSL2 on Windows 10 - installed NVM, Node but can't install any package

I have WSL 2 on my Windows 10 (* Ubuntu-20.04 Running 2). I installed nvm and node on it. nvm --version: 0.35.3 nvm ls: -> v14.11.0 default -> node (-> v14.11.0) node -> stable (->...
AlexB's user avatar
  • 121
1 vote
1 answer
3k views

NPM issue, where to start

Hopefully this is the right forum to post. Coming stack overflow but I think this is more you guys' expertise. I have a centos 6.10 box. It had Node.js and npm running ok. I don't know which versions ...
Aaron's user avatar
  • 113
1 vote
1 answer
4k views

ENOENT errors when running npm inside vagrant shell provision

Have a project with the following package.json file: { "name": "requirejs-library-skeleton", "description": "RequireJS skeleton for modern JS libraries.", "version": "0.2.0", "...
hijarian's user avatar
  • 891
1 vote
1 answer
294 views

How to assign which user to execute commands inside the container in AWS FARGATE

i'm trying to launch a nodejs container using AWS FARGATE, the problem i'm facing is that fargate gives me this error : cannot find this module "/path/to/file/webrtc.js" And when i execute ...
logax's user avatar
  • 129
1 vote
1 answer
690 views

Babel 6.26.3 keeps getting installed instead of version 7.7

I'm setting up a new server (Ubuntu 18.10), and I can't seem to get the latest Babel installed. I'm doing: apt-get -y install npm sudo npm install -g babel-cli npm install --save-dev @babel/core Yet ...
Andrew Newby's user avatar
  • 1,124
1 vote
1 answer
521 views

How do I get the SSH key of my EB instance so that I can give it deployment access in BitBucket?

I am building a node.js app that is hosted by AWS Elastic Beanstalk. One of the dependencies is hosted on BitBucket. I have specified the Git SSH url in the package.json file and everything works on ...
sdgfsdh's user avatar
  • 109
1 vote
1 answer
2k views

Issues installing Grunt in Vagrant environment

I am attempting to install node.js, npm and Grunt.js in an Ubuntu Trusty 64bit Vagrant environment and running into some issues. Here is my puppet manifest: init.pp -- class grunt::install { ...
kaffolder's user avatar
  • 285
1 vote
1 answer
328 views

troubleshoot puppet install order

My puppet agent run fails initially, then succeeds on the second run. I understand that it probably has to do with my execution order, and a dependency is being added later on in the execution ...
LukeChavers's user avatar
1 vote
1 answer
517 views

NPM fails to install Socket.io does it need x-server?

I was trying to install socket.io on my linux server using NPM root@camdev01-dev:# npm install socket.io (npm:22742): Gtk-WARNING **: cannot open display: OS:ubuntu.11.10 server
snucmrk's user avatar
  • 11
1 vote
1 answer
295 views

gcloud deploy not making dist folder

Admittedly, I'm a novice at GCloud. I "inherited" a project abandoned by the previous developer. I'm trying to deploy a node app on the app engine. The app won't start because it can't find the ...
Mike Hogan's user avatar
1 vote
0 answers
3k views

node-sass error when installing on Ubuntu 18.04

I'm having problems installing node-sass on my server. root@west:/usr/lib/node_modules# npm install -g node-sass npm WARN deprecated [email protected]: Legacy versions of mkdirp are no longer supported. ...
Andrew Newby's user avatar
  • 1,124
1 vote
1 answer
839 views

How to install Node.js and NPM on Unix server so that no users require sudo to install or read global packages?

Is this really such an uncommon situation that I can't find answers anywhere? Anyway. I have a Ubuntu VM server on DigitalOcean and I am running Jenkins on this server to do build, test and local ...
Megakoresh's user avatar
1 vote
1 answer
987 views

What does npm's error message The package grunt does not satisfy its siblings' peerDependencies … tell?

On an little outdated npm/node-platform I'm getting this error while trying to install grunt. npm ERR! peerinvalid The package grunt does not satisfy its siblings' peerDependencies requirements! npm ...
frlan's user avatar
  • 573
1 vote
1 answer
278 views

Making war inside Docker stuck on NPM

Using Docker to make war file to attach to Apache Tomcat. Struggling to use NPM/MVN to get Tomcat war up. I'm behind a corporate proxy and the make scripts don't have "bower install --allow-root" (...
user avatar
1 vote
2 answers
585 views

unable to install npm on the AWS RHEL7 AMI because of c-ares-devel dependency

I've added the EPEL repository and attempted to install npm (since it is not included in the standard repos), but get the following error: Error: Package: nodejs-devel-0.10.33-1.el7.x86_64 (epel) ...
Leonardo Gonzalez's user avatar
1 vote
0 answers
752 views

Etherpad-Lite - Something bad happened

I installed etherpad-lite on Debian 7 - I also configured NPM and Node.js, but if I try to open etherpad, I'm getting this error: { "error": "Sorry, something bad happened!" } On the console I'm ...
MyFault's user avatar
  • 913
1 vote
1 answer
3k views

Cant use npm as provider with puppet

I am attempting to do the following in puppet: package { 'bower': ensure => present, provider => 'npm', require => Class['nodejs'], before => [ Exec['npm_install'], ...
spetz's user avatar
  • 90
1 vote
1 answer
1k views

Apache webserver not starting - Not sure what's wrong

I had installed apache webserver on my local machine (Linux Mint 15) and everything was working fine until I tried to install npm/nodejs. I'm getting this error whenever I try starting apache - ...
Sterex's user avatar
  • 111
1 vote
0 answers
635 views

nodejs npm dependencies fails on pump.io installation

I want to install pump.io on my debian wheezy VPS by following these steps : https://github.com/e14n/pump.io/wiki/Debian-Installation NodeJS installation is ok, but when I ask to npm for installing ...
abon999's user avatar
  • 111
0 votes
1 answer
53 views

Are we drowning in package managers? [closed]

The current trend is to use language-oriented package manager, such as npm or bower for javascript, pip for python, gems for ruby and so on. As I understand the need for a dependency manager when you ...
luxcem's user avatar
  • 111
0 votes
1 answer
174 views

Cannot install npm on an embedded Debian hardware:

I'm not being able to install NPM on my Debian embedded hardaware. Here is the log: I'm trying to install node on an embedded amd64 system. Here is the log: $ sudo curl --silent --location https://...
Mendes's user avatar
  • 131
0 votes
1 answer
641 views

docker npm ERR! install Couldn't read dependencies

While trying Docker Tutorial https://prakhar.me/docker-curriculum/#dockerrun getting error while running root@ip-172-31-22-20:~/docker-curriculum# docker build -t ashishkarpe/foodtrucks-web . root@ip-...
Ashish Karpe's user avatar
0 votes
1 answer
121 views

How to launch let'schat (nodejs app) as deamon?

I have installed "let's chat" on my server. In the documentation, they say to launch the application with npm start from the directory where the application is installed. But i'm unable to launch ...
Antoine's user avatar
  • 125
0 votes
2 answers
2k views

google engine 502 bad gateway during fetch npm package

I'm getting weird 502 error while trying to fetch npm package inside of google service instance. Error is constantly repeating on Google App Engine (Docker container deployment procedure), and Google ...
Andrey Afoninsky's user avatar
0 votes
1 answer
162 views

Bad output for "npm ls"

How can I fix this ugly output for "npm ls"? Debian Wheezy / node v0.10.36 / npm 2.4.1 UPDATE: «*» - is an ugly char, that I can not reproduce here: [email protected] /var/www/helloworld *** ...
Dmitry Lyapin's user avatar
0 votes
0 answers
24 views

why the nexus did not download the newest package from npmjs official site when package did not exists in local

I have update the package to 0.1.148, but when I update the package in macOS using this pnpm command: > pnpm update --force  WARN  using --force I sure hope you know what you are doing  ...
Dolphin's user avatar
  • 375
0 votes
0 answers
36 views

How do i run assets (npm run production) on an elastic beanstalk laravel application?

I have a laravel application, running on an AWS eb instance (elastic beanstalk).I have uploded the code, and connected a database and everything works fine without any errors. But i need to compile ...
danielh's user avatar