You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
225 B
TypeScript

import express from 'express'
const app = express()
const port = 1234
app.get('/', (req, res) => {
res.json({ message: 'Hello', data: 'World' })
})
app.listen(port, () => {
console.log(`Listening on port ${port}...`)
})