9 lines
199 B
JavaScript
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')
|
|
}) |