11
10

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.

http-serverを使用してNode.js上で簡単にローカルサーバーを立ち上げる

Posted at

#http-serverを使用してNode.js上で簡単にローカルサーバーを立ち上げる

##http-serverとは
https://www.npmjs.com/package/http-server
コマンド実行で簡単にローカルサーバーが立ち上げられるのでちょっとしたデバック等に便利です。

##インストール
グローバルにインストールします。npmがインストール済みならこれだけで大丈夫だと思います。
$ npm install -g http-server

##オプション
-p 使用するポート(デフォルトは8080)
-o サーバーの起動後にブラウザウィンドウを開く
他にもありますが、自分はコレしか使用してないです。

##使い方
ルートにしたいディレクトリ上で下記実行するだけでローカルサーバーが立ち上がります。
$ http-server -o

また、ルートディレクトリやポートを指定したい場合は以下のように指定すればOKです。
$ http-server ./XXXX -o -p 8888

11
10
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
11
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?