Partie-3/index.js
2021-09-05 12:34:08 +02:00

9 lines
199 B
JavaScript

const express = require('express')
const app = express()
app.use(express.static('public'))
app.listen(3000, () => {
console.log('🔌 App is plugged and listening on http://localhost:3000')
})