test

node v10.24.1
version: 1.0.0
endpointsharetweet
test
const express = require('express') const app = express() const port = 8000 app.enable('trust proxy') app.get('/', (req, res) => { res.send('Hello World!') console.log("hello there guys") }) app.listen(port, () => console.log(`Example app listening on port ${port}!`))
Loading…

no comments

    sign in to comment