当前位置:网站首页>1-12 preliminary understanding of Express
1-12 preliminary understanding of Express
2022-06-30 21:29:00 【Endless pie】
Express
Express Is based on Node.js platform , Fast 、 to open up 、 minimalist Web Development framework .
Two common servers :
**web Web server :** Specialized in providing Web Web resource server .
**API Interface server :** Specialized in providing API Interface server .
Use Express, We can easily 、 Fast creation Web The server or of the website API Interface server
Express Installation
npm i [email protected]
Create basic web The server
// Import express
const express = require('express')
// establish web The server
const app = express()
// start-up web The server
app.listen(80,()=>{
console.log('sever')
})
边栏推荐
- Apply for vector bus protocol color picture wallpaper hanging picture, very good!
- Electronic scheme development - Intelligent rope skipping scheme
- Spatiotemporal data mining: an overview
- The 16th Heilongjiang Provincial Collegiate Programming Contest
- 科研中遇到迷茫困惑如何向前一步?如何在科研中发挥女性优势?
- oprator-1初识oprator
- vim 常用快捷键
- Understanding polymorphism
- 笔记【JUC包以及Future介绍】
- jupyterbook 清空控制台输出
猜你喜欢
随机推荐
根据肠道微生物组重新思考健康饮食
【无标题】第一次参加csdn活动
twelve thousand three hundred and forty-five
本地浏览器打开远程服务器上的Jupyter Notebook/Lab以及常见问题&设置
It is urgent for enterprises to protect API security
Clickhouse distributed table engine
Personal developed penetration testing tool Satania
sdfsdf
1-1 数据库的基本概念
.netcore redis GEO类型
Text recognition svtr paper interpretation
FreeRTOS record (IX. an example of a bare metal project transferring to FreeRTOS)
Metauniverse may become a new direction of Internet development
Move blog to CSDN
Fletter nested hell? No, constraintlayout to save!
文本识别-SVTR论文解读
个人开发的渗透测试工具Satania
Understanding polymorphism
Flutter 嵌套地狱?不存在的,ConstraintLayout 来解救!
Understand what MySQL index push down (ICP) is in one article







