mirror of
https://github.com/Aviortheking/Puissance4.git
synced 2025-04-23 03:12:17 +00:00
11 lines
203 B
TypeScript
11 lines
203 B
TypeScript
import express from 'express'
|
|
|
|
const app = express();
|
|
|
|
app.use(express.static('public'))
|
|
|
|
var server = app.listen(3000, function () {
|
|
|
|
console.log(`Example app listening at http://localhost:3000`);
|
|
});
|