Create routes on the node server to receive and store the data in the table and return the appropriate page and data. code example
Example 1: routes in node js
var express = require('express')
var router = express.Router()
router.use(function timeLog (req, res, next) {
console.log('Time: ', Date.now())
next()
})
router.get('/', function (req, res) {
res.send('Birds home page')
})
router.get('/about', function (req, res) {
res.send('About birds')
})
module.exports = router
Example 2: routes in node js
var birds = require('./birds')
app.use('/birds', birds)