10 lines
198 B
TypeScript
10 lines
198 B
TypeScript
|
import express from "express";
|
||
|
|
||
|
const PORT = 3000;
|
||
|
const app = express();
|
||
|
|
||
|
app.get("/", (req, res) => {
|
||
|
res.send("hello!");
|
||
|
});
|
||
|
|
||
|
app.listen(PORT, () => console.log(`Listening on port ${PORT}`));
|