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.

Revisions

  1. HasanGokce created this gist Dec 17, 2020.
    9 changes: 9 additions & 0 deletions index.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    const express = require('express');
    const router = express.Router();


    router.get('/', (req, res) => {
    res.send('<h1 id="page-title">Messaging App</h1>');
    });

    module.exports = router;