Nodejs EP.3 - import และ ใช้งาน Express
18 มีนาคม 2565
ปูพื้นฐาน Nodejs ตอนที่ 3 - import และใช้งาน Express
1: import แพ็คเกจ Express ด้วยคำสั่ง require() มาเก็บไว้ที่ตัวแปร express
const express = require("express");
2: หลังจากนั้น สร้าง app จากคำสั่ง express()
const app = express();
โดย app จะมีหน้าที่กำหนด route ต่าง ๆ เช่น เราต์ "/" "/users" และเราต์อื่น ๆ
3: ใช้ app สร้างเราต์ "/" เพื่อส่ง response เป็นข้อความ "Hello World"
app.get("/", function(request, response) {
response.send("Hello World");
});
4: ตั้ง PORT ไปที่ 3000 และให้ส่งข้อความ "Server is running." กลับมา
app.listen(3000, function() {
console.log("Server is running.")
});
5: หน้าตาของ Code ทั้งหมดครับ
const express = require("express");
const app = express();
app.get("/", function(request, response) {
response.send("Hello World");
});
app.listen(3000, function() {
console.log("Server is running.")
});
6: เปิดเซิร์ฟเวอร์ด้วยคำสั่ง node app.js จะได้รับข้อความ "Server is running." กลับมาใน Console แสดงว่าเซิร์ฟเวอร์เริ่มทำงานแล้วครับ
7: ทดสอบโดยเข้าไปที่ลิงก์ http://localhost:3000 จะเจอข้อความ "Hello World" ที่เราเขียนไว้
ยินดีด้วยครับ แอป Nodejs อันแรกเสร็จแล้วครับ!
ในตอนต่อไปผมจะสอนวิธีการส่งข้อมูลจากฝั่ง Client ไปที่ Server นะครับ