http-serverで1分でサーバーをたてる

静的サーバーをローカルでたてるならhttp-serverを使うのがとても簡単。

やること

http-serverのインストール

  • $ npm init -y
  • $ npm install http-server

ファイルの作成

sample.txt

hello sample

test.txt

hello test

実行

package.jsonにscriptを追加

"scripts":{
    "http-server": "http-server"
  }
  • $ npm run http-server
  • http://localhost:8080 にアクセスする

参考サイト

関連記事

Comments

タイトルとURLをコピーしました