js-common-code/docs/httpserver.md
2025-03-20 21:56:10 +09:00

15 lines
363 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## NodeでHttpサーバーを起動する方法
### `http-server`を使う
```sh
# http-server をグローバルインストール(初回のみ)
npm install -g http-server
# ファイルがあるディレクトリへ移動
cd src/front
# サーバー起動(デフォルトは http://localhost:8080
http-server
# http-server -p 3000
```