I am currently working on a nodejs web application I am having trouble pushing the application online with cloud foundry. I did some research on the errors and it seems that
In our case (since make
failed), this issue could be resolved by installing the build / development tools:
Ubuntu / Debian:
apt-get install -y build-essential
CentOS:
yum install gcc gcc-c++ make
Fedora 23 and above:
dnf install @development-tools
If this is not the solution, you might want to try to upgrade or downgrade node, remove package-lock.json
and the node_modules
folder, and then re-run npm install
.