diff options
-rw-r--r-- | index.js | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -3,6 +3,31 @@ 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'))); |