This file contains hidden or 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
| console.dir(data, { depth: null, colors: true }); |
This file contains hidden or 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 | |
| # 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 |