app.get('/', function (req, res) {
res.send('Hello World!')
})
const birds = require('./birds')
// ...
app.use('/birds', birds)
const express = require('express');
const mysql = require('mysql');
// Connecting with database
const db = mysql.createConnection({
host: 'localhost', // The host you're using
user: 'yourusername', // The username you use to enter database
password: 'yourpassword' // Your password to your username
});
db.connect((error) => {
if(error) {
throw error;
}
console.log('MySQL Connected');
});
const app = express();
app.get('yourroute', (request, response) => {
let sql = 'SELECT * FROM yourtable';
let query = db.query(sql, (error, result) => {
if(error) {
throw error;
}
console.log(result) // Use the result you get back here
})
});
app.listen('3000', () => {
console.log('Server is listening on port 3000');
});
app.get('/example/b', function (req, res, next) {
console.log('the response will be sent by the next function ...')
next()
}, function (req, res) {
res.send('Hello from B!')
})
const express = require('express')
const router = express.Router()
// middleware that is specific to this router
router.use((req, res, next) => {
console.log('Time: ', Date.now())
next()
})
// define the home page route
router.get('/', (req, res) => {
res.send('Birds home page')
})
// define the about route
router.get('/about', (req, res) => {
res.send('About birds')
})
module.exports = router
app.METHOD(PATH, HANDLER)
express.Router( [options] )