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

nodejs: router by use express and path package

// use Express 
// use Path

const express = require('express');
const path = require('path');

const app = express();


// ###Create Public folder
app.use(express.static('./public'));




app.get('/', (req, res) => {
    res.sendFile(path.resolve(__dirname, './navbar-app/index.html'));
});


app.all('*', (req, res) => {
    res.status(404).send('Resource not founded');
})


app.listen(5000, () => {
    console.log('Server is listening on PORT: 5000');
});
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 basic routing syntax

app.METHOD(PATH, HANDLER)
Comment

PREVIOUS NEXT
Code Example
Javascript :: angular two way binding 
Javascript :: vuejs input call the value 
Javascript :: angular remove element from array 
Javascript :: js array entries 
Javascript :: form data to json 
Javascript :: nodejs convert buffer to uint8array 
Javascript :: client.login(email, password) discord.js 
Javascript :: jquery selector input name regex 
Javascript :: add a string regex in angular input 
Javascript :: How to scan a folder for documents with javascript 
Javascript :: jquery empecher revoie du formulaire 
Javascript :: js confirm 
Javascript :: run javascript in flutter 
Javascript :: javascript find prototype 
Javascript :: how to give index in query selector in js 
Javascript :: inertia-link vuetify 
Javascript :: javascript concatenation 
Javascript :: how to make lines glow canvas 
Javascript :: configure angular router apache 
Javascript :: object assign js 
Javascript :: how to pass a component as a prop in react 
Javascript :: js retry function if error 
Javascript :: Loading react circular progress 
Javascript :: replaceAll vs replace vs split join 
Javascript :: find saturday with moment js 
Javascript :: slice array jas 
Javascript :: delete value from json array with index 
Javascript :: call vue function at element load 
Javascript :: leafletjs openstreets example 
Javascript :: cannot read property of undefined reading create material ui 
ADD CONTENT
Topic
Content
Source link
Name
9+6 =