首页 > Web开发 > 详细

nodejs: express basic

时间:2020-06-06 16:38:03      阅读:33      评论:0      收藏:0      [点我收藏+]

express: web application framework

第一个express 基本应用:

const express = require(‘express‘);
const port = 3000;

const app = express();

app.use((req, res) => {
    res.json("hello express")
});

app.get(‘/users/:id‘, (req, res) => {
    const { id } = req.params;
    res.json({
        id,
        name: "Nyan Shen"
    })
})

app.listen(port, () => {
    console.log(`server starded listening at http://localhost:${port}`)
})

/**
let http = require(‘http‘);

let server = http.createServer((req, res) => {
    res.end("hello server test")
});

server.listen(3000, ‘127.0.0.1‘, () => {
    console.log(‘server started...‘)
})
*/

遇到问题:Client does not support authentication protocol requested by server; consider upgrading MySQL client

解决问题:

use mysql;
alter user ‘root‘@‘localhost‘ identified with mysql_native_password by ‘数据库密码‘;
flush privileges;

 

nodejs: express basic

原文:https://www.cnblogs.com/Nyan-Workflow-FC/p/13055241.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!