Node.JS后端开发笔记整理(简洁版)
// 导入必要的模块
const express = require('express');
const bodyParser = require('body-parser');
const mongoose = require('mongoose');
// 创建Express应用
const app = express();
// 设置端口
const port = process.env.PORT || 3000;
// 使用body-parser中间件解析JSON和urlencoded数据
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
// 连接MongoDB数据库
mongoose.connect('mongodb://localhost:27017/node-backend-course', { useNewUrlParser: true });
// 路由定义
app.get('/', (req, res) => {
res.send('Hello World!');
});
// 启动服务器
app.listen(port, () => {
console.log(`Server running on port ${port}`);
});
这段代码展示了如何使用Express框架创建一个简单的Node.js后端服务器,并连接到MongoDB数据库。它使用了body-parser
中间件来处理请求体,并且定义了一个简单的GET路由。这是学习Node.js后端开发的一个基础入门示例。
评论已关闭