Skip to content

Instantly share code, notes, and snippets.

@nelsonsilva
Last active December 22, 2015 22:29
Show Gist options
  • Save nelsonsilva/6539939 to your computer and use it in GitHub Desktop.
Save nelsonsilva/6539939 to your computer and use it in GitHub Desktop.
#!/bin/sh
# Git
sudo apt-get -y install git
# node.js
NODE_VERSION=0.10.18
curl http://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.gz | tar xzv
ln -s node-v$NODE_VERSION-linux-x64 node-0.10
NPM=node-0.10/bin/npm
# Grunt
$NPM install -g grunt-cli
# Bower
$NPM npm install -g bower
# Maven 3
MAVEN_VERSION=3.0.5
curl http://www.eu.apache.org/dist/maven/maven-3/$MAVEN_VERSION/binaries/apache-maven-$MAVEN_VERSION-bin.tar.gz | tar xzv
ln -s apache-maven-$MAVEN_VERSION maven-3.0
# Dart Latest
curl https://storage.googleapis.com/dart-editor-archive-integration/latest/dartsdk-linux-64.tar.gz | tar xzv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment