hello-cubetiq/index.js

15 lines
243 B
JavaScript
Raw Permalink Normal View History

2020-05-06 09:26:18 +07:00
// SL CHNage
2020-04-17 21:33:59 +07:00
var express = require('express')
var app = express()
2020-05-07 19:14:10 +07:00
const PORT = 8080
2020-04-17 21:33:59 +07:00
app.get('/', function (req, res) {
res.send('Hello from CUBETIQ!')
})
2020-05-07 19:14:10 +07:00
app.listen(PORT, function () {
console.log(`app listening on port ${PORT}!`)
2020-05-06 09:26:18 +07:00
})