Skip to content

Commit 540038c

Browse files
committed
Initial commit
1 parent d8d3be4 commit 540038c

File tree

4 files changed

+1678
-0
lines changed

4 files changed

+1678
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

index.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
const express = require('express')
2+
const app = express()
3+
const port = 3000
4+
5+
app.get('/', (req, res) => {
6+
res.send('Hello World!')
7+
})
8+
9+
app.listen(port, () => {
10+
console.log(`Example app listening on port ${port}`)
11+
})

0 commit comments

Comments
 (0)