This is a test
// Sample Node.js Express server
const express = require('express');
const app = express();
const PORT = process.env.PORT || 3000;
app.get('/', (req, res) => {
res.send('Hello from Meadow Engineering Blog!');
});
app.listen(PORT, () => {
console.log(`Server is running on http://localhost:${PORT}`);
});