Skip to content

Instantly share code, notes, and snippets.

@phpmaps
Last active August 4, 2021 18:59
Show Gist options
  • Select an option

  • Save phpmaps/382c027a379cf49c37089115d4ee753c to your computer and use it in GitHub Desktop.

Select an option

Save phpmaps/382c027a379cf49c37089115d4ee753c to your computer and use it in GitHub Desktop.
server/api/membersRouter.js
const express = require('express');
const router = express.Router();
router.route("/")
.get((req, res) => {
res.json({
message: 'API Members - πŸ‘‹πŸŒŽπŸŒπŸŒ'
});
});
module.exports = router;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment