• This project
    • Loading...
  • Sign in

공태현 / healthcare-with-webcam

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • healthcare-with-webcam
  • server.js
  • 공태현's avatar
    Install express · 8b3e3b33
    8b3e3b33
    공태현 authored 2022-05-25 17:40:31 +0900
server.js 211 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11
const express = require('express');
const app = express();
const port = 3000

app.get('/', (req,res) => {
    res.send("Hello World")
})

app.listen(port, () => {
    console.log(`Listening on ${port} port`);
})