node.js与express.js创建项目以及连接数据库

搭建项目

一、技术准备

node版本:16.16.0

二、安装node成功后,安装express,命令如下:

npm install -g express

或者:

npm install --location=global express

再安装express的命令工具:

npm install --location=global express-generator

三、创建项目:myservice是自己起的项目名称

express myservice

进入项目文件:

cd myservice

安装依赖包:

npm install

++安装依赖包有时候会超时,多次执行npm install就会安装完成++

启动项目:

npm start

浏览器访问http://localhost:3000就会看到页面

连接数据库

安装数据库包:

npm install mysql2

新建数据库配置文件config/dbconfig.js:

const mysql = require('mysql2/promise');
// 创建数据库连接池

const pool = mysql.createPool({

host: '', // 主机名

port: 3306,

user: '', // 用户名

password: '', // 密码

database: '' // 数据库名称

});

module.exports = pool

新建api目录存放接口文件,新建api/test.js接口文件:

const express = require("express");

const app = express();

const pool = require("../config/dbconfig");

app.get("/", async (req, res) => {

try {

const connection = await pool.getConnection(); // 从连接池获取连接对象

// 查询数据库操作

const [rows] = await connection.query("SELECT *FROM users");

// 返回结果

res.json(rows);

// 关闭连接

connection.release();

} catch (error) {

console.log(error);

res.status(500).send("Internal Server Error");

}

});

module.exports = app;

最后在入口文件app.js里引入(参考项目自带的两个路由引入方法):

var testRouter = require('./api/test');

app.use('/test', testRouter);

每次修改保存后,需要重启项目才能生效!

重启后访问地址:http://localhost:3000/test,就可以看到数据库`users`表里的数据:

相关推荐
黑金IT3 天前
Fastify Swagger:自动化API文档生成与展示
nodejs·swagger·fastify
黑金IT4 天前
Puppeteer点击系统:解锁百度流量点击率提升的解决案例
nodejs·puppeteer·百度排名
胡西风_foxww5 天前
nodejs爬虫系统
爬虫·nodejs·node·系统·express·request·cheerio
松果猿8 天前
场地污染在线计算可视化平台,获得易智瑞GIS开发竞赛C组优胜奖,内附易智瑞GIS开发竞赛与全国大学生测绘学科创新创业智能大赛提交材料。
vue·express
黑金IT11 天前
在浏览器中运行 Puppeteer:解锁新能力
nodejs·puppeteer·浏览器自动化
itas10911 天前
Electron调用nodejs的cpp .node扩展【非安全】
electron·nodejs·addon·electron c++·electron cpp
黑金IT11 天前
自动化结账测试:使用 Playwright确保电商支付流程的无缝体验【nodejs]
前端·javascript·自动化·nodejs·浏览器自动化·playwright
js_user13 天前
在 Vue 渲染模板时,如何保留模板中的 HTML 注释?
开发语言·前端·javascript·css·vue.js·html·express
itas10915 天前
Electron调用nodejs的cpp .node扩展【安全】
electron·nodejs·electron c++·electron addon·electron c++插件
学前端的小朱15 天前
在Nodejs中使用MySQL数据库
数据库·mysql·nodejs·1024程序员节