blog

Meadow Engineering

Written by Pietro Rea | May 2, 2025 7:47:26 PM

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}`);
});