const express = require('express'); const path = require('path'); const app = express(); const members = [ { id: 1, name: 'Garth Brooks', email: 'garth.brooks@gmail.com', status: 'active' }, { id: 2, name: 'Bob Evans', email: 'bob.evans@gmail.com', status: 'inactive' }, { id: 3, name: 'Alan Jackson', email: 'alan.jackson@gmail.com', status: 'active' } ]; // Gets all members app.get('/api/members', (req, res) => res.json(members)); // Set static directory app.use(express.static(path.join(__dirname, 'public'))); const PORT = process.env.PORT || 3000; app.listen(PORT, () => console.log(`Server started on port ${PORT}`));