Last active
August 29, 2015 14:00
-
-
Save tokunami/11203770 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
webからインストール | |
nodejs.jp/nodejs.org_ja/ | |
バージョン確認 | |
$node -v | |
v0.11.11と出た。 | |
動作確認 | |
デスクトップ上にjsファイルを作成(ファイル名 helloworld.js) | |
$cd desktop | |
$vi helloworld.js | |
helloworld.js | |
console.log('hello world'); | |
実行 | |
$node helloworld.js | |
hello world と表示された。成功。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment