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 1 commit
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
Next Next commit
Added nodejs on Ubuntu 14.04
  • Loading branch information
Ryan Quinn committed Jun 24, 2015
commit bb5601f3dbb236405ff7a3919f6cc534a9ad90e4
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