IT系のネタ中心 チャレンジしたことやつまづいたことを載せたいと思います このブログのコンセプトは"ハッキングの為なら愛する家族を傷つけることをいとわない" ハッカー(ホワイト)を目指しているとっとこ駆け出しエンジニアです
$ git clone git://github.com/creationix/nvm.git ~/.nvm #nvm.shを読み込む $ source ~/.nvm/nvm.sh # nvm install インストールしたいnodeのバージョン $ nvm install v0.10.24 # nvm use 使用するのバージョン $ nvm use v0.10.24 $ node -v v0.10.24
$ nvm install v0.9.0 # インストールしたnodeのバージョン一覧 $ nvm ls v0.9.0 v0.10.24 current: v0.9.0 #新しくインストールすると使用するバージョンが #v0.9.0に切り替わっているためv0.10.24に戻す $ nvm use v0.10.24 $ node -v v0.10.24
source ~/.nvm/nvm.sh nvm use v0.10.24
#適用にフォルダを作成 $ mkdir /var/www/html/nodejs $ cd /var/www/html/nodejs #Node.jsの実行 $ node
> console.log('Hello World'); Hello World undefined > .save helloworld.js Session saved to:helloworld.js > .exit
$ node helloworld.js Hello World
var now_time = new Date().getTime(); while (now_time + 3000 > new Date().getTime()) { } console.log('hoge2');
setTimeout(function() { console.log('hoge1'); }, 3000); setTimeout(function() { console.log('hoge2'); }, 1000);
0 件のコメント :
コメントを投稿