윤성아

Move app.js to https/app.js

Showing 1 changed file with 0 additions and 9 deletions
const express = require('express');
const app = express();
const port = 3000;
app.get('/', (req, res) => {
res.send('hello world!');
});
app.listen(port, () => console.log(`Server is running on port ${port}`));
\ No newline at end of file