mirror of
https://github.com/rjNemo/docker_examples
synced 2026-06-06 18:46:42 +00:00
8 lines
No EOL
123 B
JavaScript
8 lines
No EOL
123 B
JavaScript
const express = require("express")
|
|
|
|
const app = express()
|
|
app.get("/",(req,res)=>{
|
|
res.send("Hello")
|
|
})
|
|
|
|
app.listen(80) |