Skip to content

Instantly share code, notes, and snippets.

View lukasoppermann's full-sized avatar
🐙
Doing stuff

Lukas Oppermann lukasoppermann

🐙
Doing stuff
View GitHub Profile
@lukasoppermann
lukasoppermann / log.js
Last active May 20, 2020 13:19
Deep console log
console.dir(data, { depth: null, colors: true });
#!/bin/bash
# set to desired node version
NODE_VER=11
cd ~
echo "Fetching nodejs version $NODE_VER.*"
curl -sL https://deb.nodesource.com/setup_$NODE_VER.x -o nodesource_setup.sh
echo "Installing nodejs $NODE_VER.* with build essentialls"
sudo bash nodesource_setup.sh
sudo apt install nodejs