init.js 215 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 import "./db"; import "./models/User"; import app from "./server"; const PORT = 5500; const handleListening = () => console.log(`✅ Server running : http://localhost:${PORT}`); app.listen(PORT, handleListening);