Vue2:用node+express写一个轻量级的后端服务

1、桌面创建demo文件夹

进入demo,执行如下命令

bash 复制代码
npm init

输入名称:

bash 复制代码
test_server

然后一路回车

2、安装express框架

bash 复制代码
npm i express

3、新建server.js

在demo文件夹中,新建server.js

javascript 复制代码
const express = require('express')
const app = express()

app.get('/students',(request,response)=>{
	const students = [
		{id:'001',name:'tom',age:18},
		{id:'002',name:'jerry',age:19},
		{id:'003',name:'tony',age:120},
	]
	response.send(students)
})

app.listen(5000,(err)=>{
	if(!err) console.log('服务器1启动成功了,请求学生信息地址为:http://localhost:5000/students');
})

4、启动

bash 复制代码
node server

5、访问

相关推荐
广煜永不挂科5 小时前
Devexpress.Dashboard的调用二义性
c#·express
星星会笑滴9 小时前
vue+node+Express+xlsx+emements-plus实现导入excel,并且将数据保存到数据库
vue.js·excel·express
远之喵1 天前
@tinyhttp/app VS express
express
家有狸花2 天前
Node.js 笔记(一):express路由
笔记·node.js·express
ChaITSimpleLove3 天前
K8s 一键部署 MongoDB 的 Replica-Set 和 MongoDB-Express
mongodb·kubernetes·express·高可用·yaml·replica-set
dingdingfish9 天前
关于 Oracle Database Express Edition 的功能和安装
oracle·express·database·vagrant·edition
知难行难11 天前
福昕阅读器高级版解决文件上传IEEE PDF eXpress字体未嵌入
pdf·express
ch_s_t13 天前
基于 Express+JWT + Vue 的前后端分离架构
vue.js·架构·express
caridle15 天前
教程:使用 InterBase Express 访问数据库(五):TIBTransaction
java·数据库·express
胡西风_foxww20 天前
nodejs爬虫系统
爬虫·nodejs·node·系统·express·request·cheerio