Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

Basic Routing Express.js

app.get('/', function (req, res) {
  res.send('Hello World!')
})
Comment

Express Routers

const birds = require('./birds')

// ...

app.use('/birds', birds)
Comment

nodejs express routing get

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');
});

Comment

express routing

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!')
})
Comment

Express Router

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
Comment

express basic routing syntax

app.METHOD(PATH, HANDLER)
Comment

express Router()

express.Router( [options] )
Comment

PREVIOUS NEXT
Code Example
Javascript :: jquery on click outsile hide div 
Javascript :: how to print a line in javascript 
Javascript :: express response setTimeout 
Javascript :: jquery select input with class 
Javascript :: javascript canvas reset transform 
Javascript :: react native onChangeText resize the background image 
Javascript :: check template shopify 
Javascript :: javascript get month string 
Javascript :: import javasciprt module dynamically 
Javascript :: convert days into year month 
Javascript :: javascript loop an array 
Javascript :: make multiple function calls at the same time js async 
Javascript :: java gson string to json 
Javascript :: scroll to top javascript 
Javascript :: react how to update state array 
Javascript :: react-router-dom redirect 
Javascript :: pass variable to regrex literal notation javascript 
Javascript :: regular expressions password contains number 
Javascript :: remove item from array in jquery 
Javascript :: get random item from array javascript 
Javascript :: how to add up all the numbers in between 0 and that number 
Javascript :: get last two digits of year javascript 
Javascript :: angular delete with body 
Javascript :: how to collect keys using lodash javascript 
Javascript :: change color js 
Javascript :: lorem ipsum json api 
Javascript :: for in 
Javascript :: how to remove character from string in javascript 
Javascript :: distance to km javascript 
Javascript :: finding an element ina na array in js 
ADD CONTENT
Topic
Content
Source link
Name
7+5 =