nodejs: express basic
2021-02-10 02:16
标签:word request local expr started 解决 console 基本 upgrading express: web application framework 第一个express 基本应用: 遇到问题:Client does not support authentication protocol requested by server; consider upgrading MySQL client 解决问题: nodejs: express basic 标签:word request local expr started 解决 console 基本 upgrading 原文地址:https://www.cnblogs.com/Nyan-Workflow-FC/p/13055241.htmlconst 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...‘)
})
*/
use mysql;
alter user ‘root‘@‘localhost‘ identified with mysql_native_password by ‘数据库密码‘;
flush privileges;
下一篇:8种网站防止盗链的方法
文章标题:nodejs: express basic
文章链接:http://soscw.com/index.php/essay/53360.html