I'm having a small problem here. I want to display 404 not found if I input a wrong route.
The code below only shows 404 not found if I go to http://localhost:3000/
but when I enter http://localhost:3000/wrongroute it displays Cannot GET /wrongroute instead of
 404 not found.
const bodyParser = require("body-parser");
const mysql = require('mysql');
const router = express.Router();
const db = mysql.createConnection({
    host: 'xxx.xx.xx.xx',
    user: 'root',
    password: '12345',
    database: 'test'
});
db.connect((err) =>{
    if(err){
        throw err;
    }
    console.log('Mysql Connected');
    // res.send("Mysql Connected");
});
router.post('/login', function (req, res) {
      res.send("This is from login route");
   res.end();
})
router.post('/signup', function (req, res) {
   res.send("This is from signup route");
   res.end();
})
router.get('/', function(req, res){
 res.send("404 not found");
});
module.exports = router;