unused file

This commit is contained in:
billchurch 2018-02-17 01:20:40 -05:00
parent 200c18cc17
commit 6fc1a7912b

View file

@ -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}`)
})