เย้! พี่พงมา พกมาใส่เป๋ากางเกงพี่ตั้มนะ สมนุกบอกเมาแล้วหายาก 😂

nostr:npub1xzh2kqynr29x6j3ln6x05f26ha0c0ucfr280uzljftlgcthv9r6skqe7dt

Reply to this note

Please Login to reply.

Discussion

```

const express = require('express');

const app = express();

app.use(express.json());

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

const data = {'message': 'Hello World!'}

res.send(data);

});

app.listen(3000, () => {

console.log('Listening on 3000');

});

```

This is an example Express server that listens for requests on port 3000 and responds with a JSON object containing the message "Hello World!". You can test it by opening your web browser and going to `http://localhost:3000`.