Skip to content
This repository has been archived by the owner on May 31, 2018. It is now read-only.

node.js for Ubuntu 14.04 & 15.04 #12

Merged
merged 3 commits into from
May 6, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CentOS-7/languages/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Languages & Frameworks

## nodejs.sh

This script will identify and install the latest version of [node.js](https://nodejs.org/) from source on CentOS 7.
17 changes: 17 additions & 0 deletions CentOS-7/languages/nodejs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/bash
yum -y groupinstall "Development Tools";
yum -y install python curl openssl openssl-devel pkgconfig;

VERSION=`curl -s http://nodejs.org/dist/latest/SHASUMS.txt | awk '/node-v/ {print $2}' | head -1 | sed s/node-v// | sed s/-/\ / | awk '{print $1}'`
url="http://nodejs.org/dist/v"$VERSION"/node-v"$VERSION".tar.gz"
curl $url | tar -zxf -
cd "node-v"$VERSION

# Time to Install
./configure &&
make &&
make install &&
cd .. &&
rm -rf node-v$VERSION &&
node --version &&
exit
5 changes: 5 additions & 0 deletions Fedora-22/languages/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Languages & Frameworks

## nodejs.sh

This script will identify and install the latest version of [node.js](https://nodejs.org/) from source on Fedora 22.
17 changes: 17 additions & 0 deletions Fedora-22/languages/nodejs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/bash
dnf -y group install "Development Tools";
dnf -y install python curl openssl openssl-devel pkgconfig gcc-c++;

VERSION=`curl -s http://nodejs.org/dist/latest/SHASUMS.txt | awk '/node-v/ {print $2}' | head -1 | sed s/node-v// | sed s/-/\ / | awk '{print $1}'`
url="http://nodejs.org/dist/v"$VERSION"/node-v"$VERSION".tar.gz"
curl $url | tar -zxf -
cd "node-v"$VERSION

# Time to Install
./configure &&
make &&
make install &&
cd .. &&
rm -rf node-v$VERSION &&
node --version &&
exit
5 changes: 5 additions & 0 deletions Ubuntu-14.04/languages/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Languages & Frameworks

## nodejs.sh

This script will identify and install the latest version of [node.js](https://nodejs.org/) from source on Ubuntu 14.04.
18 changes: 18 additions & 0 deletions Ubuntu-14.04/languages/nodejs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/bash
export DEBIAN_FRONTEND=noninteractive;
apt-get update;
VERSION=`curl -s http://nodejs.org/dist/latest/SHASUMS.txt | awk '/node-v/ {print $2}' | head -1 | sed s/node-v// | sed s/-/\ / | awk '{print $1}'`
url="http://nodejs.org/dist/v"$VERSION"/node-v"$VERSION".tar.gz"
curl $url | tar -zxf -
cd "node-v"$VERSION
# Doing Deps
# For some reason everything after apt-get requires explicit &&
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't seem to be the case anymore. Let's clean it up.

apt-get -y install build-essential openssl libssl-dev pkg-config &&
# Time to Install
./configure &&
make &&
make install &&
cd .. &&
rm -rf node-v$VERSION &&
node --version &&
exit
5 changes: 5 additions & 0 deletions Ubuntu-15.04/languages/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Languages & Frameworks

## nodejs.sh

This script will identify and install the latest version of [node.js](https://nodejs.org/) from source on Ubuntu 14.04.
17 changes: 17 additions & 0 deletions Ubuntu-15.04/languages/nodejs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/bash
export DEBIAN_FRONTEND=noninteractive;
apt-get update;
apt-get -y install curl build-essential openssl libssl-dev pkg-config python;
VERSION=`curl -s http://nodejs.org/dist/latest/SHASUMS.txt | awk '/node-v/ {print $2}' | head -1 | sed s/node-v// | sed s/-/\ / | awk '{print $1}'`
url="http://nodejs.org/dist/v"$VERSION"/node-v"$VERSION".tar.gz"
curl $url | tar -zxf -
cd "node-v"$VERSION

# Time to Install
./configure &&
make &&
make install &&
cd .. &&
rm -rf node-v$VERSION &&
node --version &&
exit