2012-08-05から1日間の記事一覧

HerokuでNode.jsを動かしてみた。

Gitのインストール sudo apt-get install git-core HerokuでSing up http://www.heroku.com/Getting started https://toolbelt.herokuapp.com/osx toolbeltのインストール(Ubuntuの場合) wget -qO- https://toolbelt.heroku.com/install.sh | sh 鍵生成 ssh-…

Node.jsでデバッグしてみた。

Ubuntuにnode-inspectorをインストールし、Chromeでステップ実行とかしてみた。フルスクリーン sudo npm -g install node-inspector node-inspector cd ~/nodejswork/hello node --debug hello.js

Node.jsを触ってみた。

UbuntuにNode.jsをインストールし、Hello World!してみた。フルスクリーン apt-get install python g++ make mkdir nodejs cd nodejs wget http://nodejs.org/dist/v0.8.6/node-v0.8.6.tar.gz tar zxvf node-v0.8.6.tar.gz cd node-v0.8.6/ ./configure sudo…