From 943448c457da9d5a6b87b77ffca5b81a2ed45728 Mon Sep 17 00:00:00 2001 From: Tobias Schmidl Date: Wed, 7 Mar 2018 16:27:52 +0100 Subject: [PATCH] Added node.js --- bootstrap.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bootstrap.sh b/bootstrap.sh index 9651659..f79a5ab 100644 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -3,6 +3,10 @@ sudo -S bash -c "apt install bash-completion elinks git zsh curl neovim fortunes apt-file update && \ update-command-not-found" +# node related +curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash - +sudo apt-get install -y nodejs + # vim related mkdir -p $HOME/.vim/autoload $HOME/.vim/bundle $HOME/.config/nvim && \ git clone https://github.com/VundleVim/Vundle.vim.git $HOME/.vim/bundle/Vundle.vim &&