Commit 9a130531 authored by Park Sungwoo's avatar Park Sungwoo
Browse files

123

parent 27c2fbba
import express from "express";
const port = 3000;
const app = express();
app.get("/", (req, res) => {
console.log("root path get method called.")
res.send("!23")
})
app.listen(port, () => {
console.log(`server is runnug at ${port} port.`)
})
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment