Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AliAnilKocak/f023b0da65030fca9b938a7222645a32 to your computer and use it in GitHub Desktop.
Save AliAnilKocak/f023b0da65030fca9b938a7222645a32 to your computer and use it in GitHub Desktop.
Express hello
const express = require('express')
const app = express()
const port = 3000
app.get('/', (req, res) =>
res.send('Hello World'))
app.listen(port, () => console.log(`Proje ${port} portunda ayakta!`))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment