Node.jsのサーバー構築のやり方
- Node.jsをダウンロードする
- 以下のコマンドを入力してバージョンを確認する(インストール確認のため)
- 以下のコマンドでパッケージを作成する
- 「server.js」という名前でサーバーファイルを作成する(名前は任意)
- httpモジュールを追加するために、以下のコマンドを実行する
- パッケージの中身(例)
- 「server.js」に以下のコードを記述する
- 以下のコマンドを入力して、nodemonをインストールする
- 以下のコマンドを実行してサーバーを立ち上げる
npm -v
npm init -y
npm install --save-dev http
{
"name": "nodejs-tutorial",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "nodemon server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"http": "^0.0.1-security"
}
}
※「scripts」の”test”部分を、”start”:”nodemon server.js”に変更します。
const http = require("http");
const PORT = 8000; // ポート番号は任意
const html = require("fs").readFileSync("./index.html"); // HTMLファイルを読み込む
const server = http.createServer((req, res) => {
res.writeHead(200, { "Content-Type": "text/html" });
res.write(html);
res.end();
});
server.listen(PORT, () => {
console.log("server running!");
});
npm install -g nodemon
npm run start
このブログはワードプレスでGUIだけで編集できますが、上の説明はhtmlで書いてみました。いつもより見にくいかもしれませんがご了承ください。
コメント