PhantomJS をAMI上にsetupした。
1. phantomJS のdownload
2014/05/24時点では、1.9.7http://phantomjs.org/download.html
downloadしたら解凍し、依存関係のあるパッケージをyumでinstall
% bzcat phantomjs-1.9.7-linux-x86_64.tar.bz2 | tar xvf - % sudo yum install fontconfig freetype libfreetype.so.6 libfontconfig.so.1 libstdc++.so.6
2. phantomJS の動作確認
bin へのPATHを通してから、サンプルを実行する。
% export PATH=$HOME/work/phantomjs-1.9.7-linux-x86_64/bin:$PATH % cd work/phantomjs-1.9.7-linux-x86_64/examples % phantomjs hello.js Hello, world!