Skip to content

Latest commit

 

History

History
17 lines (7 loc) · 222 Bytes

README.md

File metadata and controls

17 lines (7 loc) · 222 Bytes

const express = require('express')

const app = express();

const port = 3000

app.get('/', (req, res) => res.send('JXRDN'))

app.listen(port, () =>

console.log(Your app is listening a http://localhost:${port})

);