0
0

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.

Hello nodejs

Last updated at Posted at 2016-09-07

このページでは、ノードのインストールとかは置いておいて、とりあえずnode.jsのプログラムを書いてみるページです。
nodeコマンドとnpmコマンドがすでに使える状態になっていることを前提とします。

準備

パッケージマネージャーをセットします。
プログラムだけ書きたい人はとばしちゃえ

まずはプログラムを入れるディレクトリを作成

$ mkdir hello

パッケージマネージャーで初期化

$ npm init

プログラムを書く

下記ソースを書いてindex.jsとして保存

index.js
console.log("hellow! node.js");

保存したら、下記コマンドで実行します。

$ node index.js

hellow! node.jsと表示されればokです。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?