Skip to content

Instantly share code, notes, and snippets.

@HasanGokce
Created December 17, 2020 13:35
Show Gist options
  • Save HasanGokce/d0afff045a4e69eb50f35c48bcbdf68d to your computer and use it in GitHub Desktop.
Save HasanGokce/d0afff045a4e69eb50f35c48bcbdf68d to your computer and use it in GitHub Desktop.
Response Content
const express = require('express');
const router = express.Router();
router.get('/', (req, res) => {
res.send('<h1 id="page-title">Messaging App</h1>');
});
module.exports = router;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment