-
-
Save shizonic/fe7b24a33f16ee44aae810d0bc71631e to your computer and use it in GitHub Desktop.
Install nodeJS on Kali Linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt-get install python g++ make checkinstall fakeroot | |
src=$(mktemp -d) && cd $src | |
wget -N http://nodejs.org/dist/node-latest.tar.gz | |
tar xzvf node-latest.tar.gz && cd node-v* | |
./configure | |
sudo fakeroot checkinstall -y --install=no --pkgversion $(echo $(pwd) | sed -n -re's/.+node-v(.+)$/\1/p') make -j$(($(nproc)+1)) install | |
sudo dpkg -i node_* |
UPDATE AS OF 2021
Check instructions here --> https://github.com/nodesource/distributions/blob/master/README.md#deb
Since Kali is Debian based what will apply is:
# Node.js LTS (v14.x): # Using Debian, as root curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - apt-get install -y nodejs # OR curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo bash - apt-get install -y nodejs
Well done simple solving and node js setup method for debian derivative
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
if you get "the trying to overwrite error" i.e.
you can resolve it with
check https://askubuntu.com/questions/1062171/dpkg-deb-error-paste-subprocess-was-killed-by-signal-broken-pipe for reference