forked from anthonyshort/laptop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode
35 lines (23 loc) · 868 Bytes
/
node
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/sh
echo "Installing Phantom JS for Javascript testing..."
brew install phantomjs
echo "Installing Node..."
brew install node
echo "Install NPM (Node Package Manager)..."
curl http://npmjs.org/install.sh | sh
echo "Installing Coffeescript..."
npm install -g coffee-script
echo "Installing Grunt and Grunt packages..."
npm install -g grunt
echo "Installing Wintersmith for creating static websites..."
npm install -g wintersmith
echo "Installing JSHint to validate Javascript code..."
npm install -g jshint
echo "Installing Uglify for minifying Javascript code..."
npm install -g uglify-js
echo "Installing Handlebars templating engine..."
npm install -g handlebars
echo "Installing Jade templating engine..."
npm install -g jade
echo "Installing JS2Coffee for converting projects to Coffeescript..."
npm install -g js2coffee