printer-monitor/dist/index.js

8 lines
180 B
JavaScript
Raw Normal View History

2023-05-15 14:55:22 +00:00
import express from 'express';
const app = express();
const port = 3000;
app.get('/', (req, res) => { });
app.listen(port, () => {
console.log(`http://localhost:${port}`);
});