unused file
This commit is contained in:
parent
200c18cc17
commit
6fc1a7912b
1 changed files with 0 additions and 15 deletions
|
@ -1,15 +0,0 @@
|
||||||
const express = require('express')
|
|
||||||
const app = express()
|
|
||||||
const port = 3000
|
|
||||||
|
|
||||||
app.get('/', (request, response) => {
|
|
||||||
response.send('Hello from Express!')
|
|
||||||
})
|
|
||||||
|
|
||||||
app.listen(port, (err) => {
|
|
||||||
if (err) {
|
|
||||||
return console.log('something bad happened', err)
|
|
||||||
}
|
|
||||||
|
|
||||||
console.log(`server is listening on ${port}`)
|
|
||||||
})
|
|
Loading…
Reference in a new issue