11 lines
185 B
JavaScript
11 lines
185 B
JavaScript
import express from 'express';
|
|
import path from 'path';
|
|
|
|
const app = express();
|
|
|
|
app.use(express.static('public'));
|
|
|
|
app.listen(3000);
|
|
|
|
console.log("Codelist app running on port 3000")
|