03 - Postman set up
Adding a Response
app.use('/api/test', function(req, res){ res.send("This is data from the /api/test endpoint. It's from the server."); });
Last updated
app.use('/api/test', function(req, res){
res.send("This is data from the /api/test endpoint. It's from the server.");
});Last updated