1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

node.jsコマンド

Posted at

Node.jsコマンドについて

terminalを開いてnodeと打つと、>が画面に出て、入力待ち状態となる。

そこに console.log('hello'); と書くと terminalが hello と表示してくれる

終了するときは、.exit と入力する。
node --version でnodeのバージョンを知ることができる。

主に使うのはこっち

node ファイル名でファイル名を読み込む

ファイル名を hello.js とする
hello.jsのファイルの中に console.log('hello'); と書く
terminalで node hello.js と打つとterminalが hello と返してくれる

以上

ほかのnodeのオプションを知りたいときは、 node --help と打つと知ることができる。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?