NODE: Express Basics
NODE içinde Express Basics konusunu örneklerle öğren.
NODE — Express Basics
Genel Bakış
Express, Node.js için popüler bir web framework'üdür.
Öğreneceklerin
- app oluştur
- routes
- req/res
- sunucu başlat
Sözdizimi
app.get("/", (req,res)=>res.send("Hi"));
Örnek
import express from "express";
const app = express();
app.get("/", (req,res)=>{
res.send("Merhaba DrSchool");
});
app.listen(20010, ()=>console.log("http://localhost:20010"));
Notlar
- Middleware için app.use kullan.
- PORT için env değişkeni kullan.